Skip to content

Commit 72f69a5

Browse files
committed
Fixed openssl warnings related issue #6
1 parent 873dae4 commit 72f69a5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A lightweight Git Server Docker image built with Alpine Linux. Available on [Git
55

66
### Basic Usage
77

8-
How to run the container in port 2222 with two volumes, keys volume for public keys and repos volume for git repositories:
8+
How to run the container in port 2222 with two volumes: keys volume for public keys and repos volume for git repositories:
99

1010
$ docker run -d -p 2222:22 -v ~/git-server/keys:/git-server/keys -v ~/git-server/repos:/git-server/repos jkarlos/git-server-docker
1111

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ version: '2'
33
services:
44

55
git-server:
6-
#image: jkarlos/git-server-docker
7-
build: .
6+
image: jkarlos/git-server-docker
7+
#build: .
88
restart: always
99
container_name: git-server
1010
ports:

sshd_config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,14 @@ PasswordAuthentication no
7676
# Change to no to disable s/key passwords
7777
#ChallengeResponseAuthentication yes
7878

79-
# Kerberos options
80-
KerberosAuthentication no
79+
# Kerberos options (deprecated)
80+
#KerberosAuthentication no
8181
#KerberosOrLocalPasswd yes
8282
#KerberosTicketCleanup yes
8383
#KerberosGetAFSToken no
8484

85-
# GSSAPI options
86-
GSSAPIAuthentication no
85+
# GSSAPI options (deprecated)
86+
#GSSAPIAuthentication no
8787
#GSSAPICleanupCredentials yes
8888

8989
# Set this to 'yes' to enable PAM authentication, account processing,

0 commit comments

Comments
 (0)