1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00

add gitlab

This commit is contained in:
kev 2015-08-23 17:54:55 +08:00
parent 2b67801ed3
commit 72a92788d5
2 changed files with 13 additions and 0 deletions

@ -69,6 +69,7 @@ dockerfiles
## 3rd-party
- [x] builder
- [x] gitlab
- [x] logspout
- [x] openvpn
- [x] registrator

12
gitlab/docker-compose.yml Normal file

@ -0,0 +1,12 @@
gitlab:
image: gitlab/gitlab-ce
ports:
- "8443:443"
- "8080:80"
- "2222:22"
volumes:
- /srv/gitlab/config:/etc/gitlab
- /srv/gitlab/logs:/var/log/gitlab
- /srv/gitlab/data:/var/opt/gitlab
privileged: true
restart: always