mirror of
https://github.com/nicolabs/git-server-docker.git
synced 2025-09-05 06:36:38 +02:00
Fixed openssl warnings related issue #6
This commit is contained in:
parent
873dae4722
commit
72f69a5d6b
|
@ -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
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue