Dateien hochladen nach „Stack“
This commit is contained in:
21
Stack/gitlab.yml
Normal file
21
Stack/gitlab.yml
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
version: "3.6"
|
||||
services:
|
||||
gitlab:
|
||||
image: gitlab/gitlab-ce:latest
|
||||
hostname: ${DOMAIN}
|
||||
ports:
|
||||
- "${GITLABSSHPORT}:22"
|
||||
- "${GITLABPORT80}:80"
|
||||
- "${GITLABPORT443}:443"
|
||||
volumes:
|
||||
- "${APPDATA}/gitlab/data:/var/opt/gitlab"
|
||||
- "${APPDATA}/gitlab/logs:/var/log/gitlab"
|
||||
- "${APPDATA}/gitlab/config:/etc/gitlab"
|
||||
restart: unless-stopped
|
||||
gitlab-runner:
|
||||
image: gitlab/gitlab-runner:alpine
|
||||
volumes:
|
||||
- "${APPDATA}/gitlab/config-runner:/etc/gitlab-runner"
|
||||
- "/var/run/docker.sock:/var/run/docker.sock"
|
||||
restart: unless-stopped
|
Reference in New Issue
Block a user