-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (49 loc) · 838 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (49 loc) · 838 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
version: '3'
services:
consul:
image: consul
ports:
- "8500:8500"
rabbitmq:
image: rabbitmq:3-management
ports:
- "15672:15672"
zipkin:
image: openzipkin/zipkin
ports:
- "9411:9411"
gogs:
image: gogs/gogs
volumes:
- gogs:/data
ports:
- "10022:22"
- "10080:3000"
config:
build:
context: config
ports:
- "8082:8080"
gateway:
build:
context: gateway
ports:
- "8081:8080"
service-user-1:
build:
context: service-user
args:
instanceId: service-user-1
service-user-2:
build:
context: service-user
args:
instanceId: service-user-2
service-product:
build: service-product
service-order:
build: service-order
ports:
- "8080:8080"
volumes:
gogs: {}