-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
59 lines (51 loc) · 1.1 KB
/
docker-compose.yml
File metadata and controls
59 lines (51 loc) · 1.1 KB
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
version: '3.8'
services:
rabbitmq:
image: 'rabbitmq:3-management'
ports:
- '5672:5672'
- '15672:15672'
logging:
driver: none
mongodb:
image: 'mongo'
ports:
- '27017:27017'
rmconsumer:
# image: rmconsumerimage
build: rmconsumer
volumes:
- ./rmconsumer:/ride_matching_consumer
environment:
- PYTHONUNBUFFERED=1
- SERVER_IP=producer
- SERVER_PORT=6000
- CUST_ID=1
- CONSUMERIP="192.168.1.1"
- CONSUMERNAME="Consumer1"
rmconsumer2:
# image: rmconsumerimage
build: rmconsumer
volumes:
- ./rmconsumer:/ride_matching_consumer
environment:
- PYTHONUNBUFFERED=1
- SERVER_IP=producer
- SERVER_PORT=6000
- CUST_ID=2
- CONSUMERIP="192.168.1.2"
- CONSUMERNAME="Consumer2"
dbconsumer:
build: dbconsumer
# image: dbconsumerimage
volumes:
- ./dbconsumer:/database_consumer
environment:
- PYTHONUNBUFFERED=1
producer:
build: producer
# image: producerimage
volumes:
- ./producer:/producer
ports:
- 6000:6000