First batch

This commit is contained in:
Yugi
2025-04-13 00:25:40 +02:00
commit fd170b4e5d
18 changed files with 451 additions and 0 deletions

16
Gitlab/docker-compose.yml Executable file
View File

@@ -0,0 +1,16 @@
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'