-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduction.yml
80 lines (73 loc) · 1.64 KB
/
production.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
version: '2'
services:
helen:
image: tf2stadium/helen:latest
restart: always
depends_on:
- database
- rabbitmq
- pauling
- fumble
- twitchbot
env_file: env/helen-prod.env
ports:
- "127.0.0.1:3001:80"
- "127.0.0.1:3002:81"
entrypoint: /bin/helen -disable_pauling=false -disable_fumble=false -disable_twitchbot=false
stop_signal: SIGTERM
twitchbot:
image: tf2stadium/twitchbot:latest
restart: always
depends_on:
- database
- rabbitmq
ports:
- "localhost:3007:80"
env_file: env/twitchbot-prod.env
pauling:
image: tf2stadium/pauling:latest
restart: always
stop_signal: SIGTERM
depends_on:
- database
- rabbitmq
ports:
- "3003:3003/udp"
- "localhost:3005:80"
env_file: env/pauling-prod.env
frontend:
image: tf2stadium/frontend:dev
restart: always
depends_on:
- helen
env_file: env/frontend-prod.env
ports:
- "127.0.0.1:3004:80"
fumble:
image: tf2stadium/fumble
restart: always
depends_on:
- database
- murmur
- rabbitmq
ports:
- "localhost:3006:80"
env_file: env/fumble-prod.env
database:
image: postgres:9.6
restart: always
env_file: env/database-prod.env
volumes:
- ./data/database_prod/:/var/lib/postgresql/data:z
rabbitmq:
image: rabbitmq:3.7.3
restart: always
volumes:
- ./data/rabbitmq_prod/:/var/lib/rabbitmq:z
mumble:
image: mumblevoip/mumble-server:v1.4.287-2
restart: always
env_file: env/mumble-prod.env
ports:
- "64738:64738"
- "64738:64738/udp"