17 lines
496 B
YAML
Executable File
17 lines
496 B
YAML
Executable File
web:
|
|
#image: 'gitlab/gitlab-ce:latest'
|
|
restart: always
|
|
image: 'gitlab/gitlab-ce:14.1.8-ce.0'
|
|
hostname: '192.168.0.23'
|
|
environment:
|
|
GITLAB_OMNIBUS_CONFIG: |
|
|
external_url 'http://192.168.0.23:9191'
|
|
gitlab_rails['gitlab_shell_ssh_port'] = 2344
|
|
ports:
|
|
- '9191:9191'
|
|
- '2344:22'
|
|
volumes:
|
|
- '/zstore/Docker-volumes/Gitlab/config:/etc/gitlab'
|
|
- '/zstore/Docker-volumes/Gitlab/logs:/var/log/gitlab'
|
|
- '/zstore/Docker-volumes/Gitlab/data:/var/opt/gitlab'
|