-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
58 lines (57 loc) · 1.19 KB
/
docker-compose.yml
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
version: '2.4'
services:
storage:
image: openzipkin/zipkin-mysql
container_name: mysql
zipkin:
image: openzipkin/zipkin
container_name: zipkin
environment:
- STORAGE_TYPE=mysql
- MYSQL_HOST=mysql
- SCRIBE_ENABLED=true
ports:
- 9411:9411
- 9410:9410
depends_on:
- storage
api-gateway:
image: node:erbium-alpine
working_dir: /api-gateway
command: yarn start
ports:
- 3000:3000
volumes:
- type: bind
source: ./api-gateway
target: /api-gateway
subtract-service:
image: node:erbium-alpine
working_dir: /subtract-service
command: yarn start
ports:
- 2999:2999
volumes:
- type: bind
source: ./subtract-service
target: /subtract-service
add-service:
image: node:erbium-alpine
working_dir: /add-service
command: yarn start
ports:
- 3001:3001
volumes:
- type: bind
source: ./add-service
target: /add-service
web-ui:
image: node:erbium-alpine
working_dir: /web-ui
command: yarn start
ports:
- 8090:8090
volumes:
- type: bind
source: ./web-ui
target: /web-ui