-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.yml
66 lines (59 loc) · 1.29 KB
/
dev.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
version: '2'
services:
helen:
image: tf2stadium/helen:dev
restart: always
depends_on:
- database
- rabbitmq
- pauling
- fumble
env_file: env/helen-dev.env
ports:
- "4001:80"
- "4002:81"
entrypoint: /bin/helen -disable_pauling=false -disable_fumble=false
stop_signal: SIGTERM
pauling:
image: tf2stadium/pauling:dev
restart: always
stop_signal: SIGTERM
depends_on:
- database
- rabbitmq
ports:
- "4003:4003/udp"
env_file: env/pauling-dev.env
frontend:
image: tf2stadium/frontend:dev
depends_on:
- helen
- database
env_file: env/frontend-dev.env
ports:
- "4004:80"
fumble:
image: tf2stadium/fumble:dev
restart: always
depends_on:
- database
- mumble
- rabbitmq
env_file: env/fumble-dev.env
database:
image: postgres:9.6
env_file: env/database-dev.env
ports:
- "5432:5432"
volumes:
- ./data/database_dev/data:/var/lib/postgresql/data:z
rabbitmq:
image: rabbitmq:3.7.3
volumes:
- ./data/rabbitmq_dev/:/var/lib/rabbitmq:z
mumble:
image: mumblevoip/mumble-server:v1.4.287-2
env_file: env/mumble-dev.env
ports:
- "64738:64738"
- "64738:64738/udp"