-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (36 loc) · 802 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (36 loc) · 802 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
37
38
39
40
#Dev environment
version: '2'
services:
listener:
image: handsoff/listen
ports:
- "5000:5000/udp"
- "5001:5001"
links:
- message_queue
message_queue:
image: handsoff/message-queue
ports:
- "5672:5672"
- "15672:15672"
volumes:
- /opt/data:/var/lib/rabbitmq
parser:
image: handsoff/parser
ports:
- "7001:7001"
links:
- message_queue
# - handsoff_database
env_file:
- parser-variables.env
frontend:
image: handsoff/frontend
ports:
- "8080:8080"
links:
- parser
# handsoff_database:
# image: handsoff/database
# ports:
# - "5432:5432"