First version

This commit is contained in:
Jason Rothstein 2020-08-09 01:46:27 -05:00
parent f3b2c59fc7
commit 9e43ab5a1d

24
docker-compose.yml Normal file
View File

@ -0,0 +1,24 @@
---
networks:
gitlab_ce:
external: false
services:
gitlab_ce:
image: gitlab/gitlab-ce:latest
networks:
gitlab_ce: null
ports:
- 80:80/tcp
- 443:443/tcp
- 2222:22/tcp
restart: always
volumes:
- config:/etc/gita:rw
- logs:/var/log/gitlab:rw
- data:/var/opt/gitlab:rw
version: 2.0
volumes:
config: {}
data: {}
logs: {}
...