rename dirs

This commit is contained in:
L4RM4ND
2024-03-10 05:19:47 +01:00
parent 17af40931e
commit 37b5695050
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
# References
- https://docs.gitlab.com/ee/install/docker.html

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:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/config:/etc/gitlab
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/logs:/var/log/gitlab
- ${DOCKER_VOLUME_STORAGE:-/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
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/runner:/etc/gitlab-runner