cleanup repo

This commit is contained in:
L4RM4ND
2023-02-23 22:33:13 +01:00
parent 4e9a51c207
commit 153ba415ba
182 changed files with 84 additions and 84 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:
- /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