This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
84 lines (78 loc) · 1.7 KB
/
docker-compose.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
glredis:
image: redis
hostname: glredis
domainname: localdomain
glenhancer:
image: smartdeveloperhub/sdh-gl-enhancer-docker
hostname: glenhancer
domainname: localdomain
links:
- glredis:glredis
environment:
- TERM=xterm
- ENH_LISTEN_PORT=5000
- ENH_REDIS_IP=glredis
- ENH_REDIS_PORT=6379
glcollector:
image: smartdeveloperhub/sdh-gl-collector-docker
links:
- glredis:glredis
environment:
- TERM=xterm
- COLL_GITLAB_PROT=http
- COLL_GITLAB_IP=
- COLL_GITLAB_PORT=80
- COLL_GITLAB_USER=
- COLL_GITLAB_PASS=
- COLL_GITLAB_VERIFY_SSL=0
- COLL_REDIS_IP=glredis
- COLL_REDIS_PORT=6379
- COLL_DELAY=60
orgharvester:
image: smartdeveloperhub/sdh-org-harvester-docker:0.1.0
hostname: orgharvester
domainname: localdomain
mem_limit: 1024m
environment:
- TERM=xterm
ports:
- "8000:80"
scmharvester:
image: smartdeveloperhub/sdh-scm-harvester-docker:0.2.0
hostname: scmharvester
domainname: localdomain
links:
- glenhancer:glenhancer
environment:
- TERM=xterm
- GITLAB_ENHANCER=http://glenhancer:5000/api
ports:
- "8001:80"
ciharvester:
image: smartdeveloperhub/sdh-ci-harvester-docker:0.2.0
hostname: ciharvester
domainname: localdomain
mem_limit: 1024m
environment:
- TERM=xterm
- TARGET=http://
- HTTP_PORT=80
- HTTP_HOST=ciharvester
- BROKER_PORT=5672
- BROKER_HOST=
ports:
- 8002:80
nginx:
build: nginx
hostname: nginx
domainname: localdomain
links:
- scmharvester:scmharvester
- orgharvester:orgharvester
- ciharvester:ciharvester
environment:
- TERM=xterm
ports:
- "80:80"
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf