-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (30 loc) · 975 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (30 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
version: '3'
services:
gitlab.playground.test:
image: 'gitlab/gitlab-ce:11.6.0-ce.0'
hostname: 'gitlab.playground.test'
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url 'http://gitlab.playground.test:9980'
registry_external_url 'http://gitlab.playground.test:4567'
unicorn['socket'] = '/opt/gitlab/var/unicorn/gitlab.socket'
ports:
- '9980:9980'
- '4567:4567'
volumes:
- './gitlab/conf:/etc/gitlab'
- './gitlab/logs:/var/log/gitlab'
- './gitlab/data:/var/opt/gitlab'
gitlab-runner:
image: 'gitlab/gitlab-runner:alpine-v11.6.0'
volumes:
- './gitlab-runner/config:/etc/gitlab-runner'
- '/var/run/docker.sock:/var/run/docker.sock'
gitlab-radiator:
image: 'matteocajani/gitlab-radiator:0.0.2'
environment:
- GITLAB_ACCESS_TOKEN
ports:
- '9933:3000'
volumes:
- './gitlab-radiator/.gitlab-radiator.yml:/home/node/.gitlab-radiator.yml'