-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (41 loc) · 757 Bytes
/
docker-compose.yml
File metadata and controls
50 lines (41 loc) · 757 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
46
47
48
49
50
version: '2.1'
services:
config-server:
build: config-server
ports:
- 9099:9099
registry-service:
build: registry-service
ports:
- 8990:8990
api-gateway-service:
build: api-gateway-service
ports:
- 8000:8000
rabbitmq:
ports:
- 5672:5672
auth-service:
build: auth-service
ports:
- 8991:8991
account-service:
build: account-service
ports:
- 8992:8992
catalog-service:
build: catalog-service
ports:
- 8993:8993
monitoring-service:
build: monitoring-service
ports:
- 8080:8080
order-service:
build: order-service
ports:
- 8994:8994
processing-service:
build: processing-service
ports:
- 8999:8999