Skip to content

Commit

Permalink
Fixed openssl warnings related issue #6
Browse files Browse the repository at this point in the history
  • Loading branch information
jkarlosb committed Nov 30, 2017
1 parent 873dae4 commit 72f69a5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A lightweight Git Server Docker image built with Alpine Linux. Available on [Git

### Basic Usage

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

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

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ version: '2'
services:

git-server:
#image: jkarlos/git-server-docker
build: .
image: jkarlos/git-server-docker
#build: .
restart: always
container_name: git-server
ports:
Expand Down
8 changes: 4 additions & 4 deletions sshd_config
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ PasswordAuthentication no
# Change to no to disable s/key passwords
#ChallengeResponseAuthentication yes

# Kerberos options
KerberosAuthentication no
# Kerberos options (deprecated)
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no

# GSSAPI options
GSSAPIAuthentication no
# GSSAPI options (deprecated)
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

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

0 comments on commit 72f69a5

Please sign in to comment.