-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (38 loc) · 836 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
49 lines (38 loc) · 836 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
41
42
43
44
45
version: "2.1"
services:
rabbitmq:
image: rabbitmq
ports:
- "5672:5672"
- "15672:15672"
registration-server:
build: ./registration-server
ports:
- "8761:8761"
order-service:
build: ./order-service
ports:
- "8080:8080"
environment:
- EUREKA_SERVER=registration-server
- RABBITMQ_HOST=rabbitmq
shipment-service:
build: ./shipment-service
ports:
- "8081:8081"
environment:
- EUREKA_SERVER=registration-server
- RABBITMQ_HOST=rabbitmq
invoice-service:
build: ./invoice-service
ports:
- "8082:8082"
environment:
- EUREKA_SERVER=registration-server
- RABBITMQ_HOST=rabbitmq
query-service:
build: ./query-service
ports:
- "8083:8083"
environment:
- RABBITMQ_HOST=rabbitmq