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
|
### 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
|
$ 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:
|
services:
|
||||||
|
|
||||||
git-server:
|
git-server:
|
||||||
#image: jkarlos/git-server-docker
|
image: jkarlos/git-server-docker
|
||||||
build: .
|
#build: .
|
||||||
restart: always
|
restart: always
|
||||||
container_name: git-server
|
container_name: git-server
|
||||||
ports:
|
ports:
|
||||||
|
|
|
@ -76,14 +76,14 @@ PasswordAuthentication no
|
||||||
# Change to no to disable s/key passwords
|
# Change to no to disable s/key passwords
|
||||||
#ChallengeResponseAuthentication yes
|
#ChallengeResponseAuthentication yes
|
||||||
|
|
||||||
# Kerberos options
|
# Kerberos options (deprecated)
|
||||||
KerberosAuthentication no
|
#KerberosAuthentication no
|
||||||
#KerberosOrLocalPasswd yes
|
#KerberosOrLocalPasswd yes
|
||||||
#KerberosTicketCleanup yes
|
#KerberosTicketCleanup yes
|
||||||
#KerberosGetAFSToken no
|
#KerberosGetAFSToken no
|
||||||
|
|
||||||
# GSSAPI options
|
# GSSAPI options (deprecated)
|
||||||
GSSAPIAuthentication no
|
#GSSAPIAuthentication no
|
||||||
#GSSAPICleanupCredentials yes
|
#GSSAPICleanupCredentials yes
|
||||||
|
|
||||||
# Set this to 'yes' to enable PAM authentication, account processing,
|
# Set this to 'yes' to enable PAM authentication, account processing,
|
||||||
|
|
Loading…
Reference in a new issue