-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (32 loc) · 864 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (32 loc) · 864 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
35
36
mongodb:
image: erangaeb/senzmongodb:0.1
container_name: senzmongodb
volumes:
['/home/ubuntu/senz/mongodb:/data/db']
ports:
- 27017:27017
switch:
image: erangaeb/senzswitch:0.53
container_name: senzswitch
ports:
- 7070:7070
environment:
- MONGO_HOST=172.17.0.1
- SWITCH_MODE=PROD
volumes:
['/home/ubuntu/senz/switch/logs:/app/logs', '/home/ubuntu/senz/switch/keys:/app/.keys']
links:
- mongodb
stream:
image: erangaeb/streamswitch:0.8
container_name: streamswitch
ports:
- 9090:9090/udp
environment:
- MONGO_HOST=172.17.0.1
- SWITCH_MODE=PROD
- FEATURE_TOGGLE_SENZ_PARSING=true
volumes:
['/home/ubuntu/senz/switch/logs:/app/logs', '/home/ubuntu/senz/switch/keys:/app/.keys']
links:
- mongodb