-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdocker-compose.yml
73 lines (70 loc) · 1.53 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
version: '2'
services:
nginx:
build: nginx
links:
- flask
# - bbmaster
volumes_from:
- bbdata
- wwwdata
ports:
- "8020:80"
wwwdata:
image: busybox
volumes:
- /var/www/overviewer-web-volumes/web:/data/www
flask:
build: flask
env_file: confidential.env
links:
- postgres
# - bbmaster
volumes_from:
- wwwdata
postgres:
build: postgres
env_file: confidential.env
volumes_from:
- dbdata
dbdata:
image: busybox
volumes:
- /var/www/overviewer-web-volumes/database:/var/lib/postgresql/data
bbdata:
image: busybox
volumes:
- /var/www/overviewer-web-volumes/buildbot:/data/buildbot
# bbmaster:
# build: buildbot
# env_file: confidential.env
# links:
# - postgres
# volumes_from:
# - bbdata
# volumes:
# - ./buildbot/rpmsign.sh:/root/rpmsign.sh
# - ./buildbot/start.sh:/root/start.sh
# - ./buildbot/master:/root/master
# - ./buildbot/repos:/root/repos
# ports:
# - "9989:9989"
# bbcentos764:
# build: buildbot/docker-builders/centos7-64
# env_file: confidential.env
# cap_add:
# - SYS_ADMIN
# security_opt:
# - apparmor:unconfined
# links:
# - bbmaster
# bbstretch64:
# build: buildbot/docker-builders/stretch-64
# env_file: confidential.env
# links:
# - bbmaster
# bbstretch32:
# build: buildbot/docker-builders/stretch-32
# env_file: confidential.env
# links:
# - bbmaster