clean commit

This commit is contained in:
LRVT 2023-02-17 12:50:22 +01:00 committed by GitHub
parent 8aa307af40
commit 12e2a3974e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,27 @@
version: '3.7'
services:
gitlab-ce:
image: gitlab/gitlab-ce:latest
restart: unless-stopped
container_name: gitlab-ce
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url 'http://gitlab.example.com' # please adjust
ports:
- 8033:80 # HTTP
- 8434:443 # HTTPS
- 2222:22 # SSH
volumes:
- /mnt/docker-volumes/gitlab/config:/etc/gitlab
- /mnt/docker-volumes/gitlab/logs:/var/log/gitlab
- /mnt/docker-volumes/gitlab/data:/var/opt/gitlab
gitlab-runner:
image: gitlab/gitlab-runner:alpine
container_name: gitlab-runner
restart: unless-stopped
depends_on:
- gitlab-ce
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /mnt/docker-volumes/gitlab/runner:/etc/gitlab-runner