-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
83 lines (76 loc) · 1.58 KB
/
docker-compose.yaml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
version: '2.1'
services:
monolith:
restart: unless-stopped
build:
context: ./ms-0-monolith
dockerfile: ./Dockerfile
volumes: ['monolith-data:/home/appuser']
ports: ['8001:8001']
networks:
public-net:
aliases:
- m
- monolith
gateway:
restart: unless-stopped
build:
context: ./ms-1-gateway
dockerfile: ./Dockerfile
volumes: ['gateway-data:/home/appuser']
ports: ['8002:8002']
depends_on:
monolith:
condition: service_healthy
links:
- 'monolith:monolith'
environment:
PROPS_MONOLITH_HOST: 'monolith'
networks:
public-net:
aliases:
- g
- gateway
ui:
restart: unless-stopped
build:
context: ./ms-2-ui
dockerfile: ./Dockerfile
volumes: ['ui-data:/home/appuser']
ports: ['8003:8003']
depends_on:
gateway:
condition: service_healthy
links: ['gateway:gateway']
environment:
PROPS_GATEWAY_HOST: 'gateway'
networks:
public-net:
aliases:
- u
- ui
rest:
restart: unless-stopped
build:
context: ./ms-3-rest
dockerfile: ./Dockerfile
volumes: ['rest-data:/home/appuser']
ports: ['8004:8004']
depends_on:
gateway:
condition: service_healthy
links: ['gateway:gateway']
environment:
PROPS_GATEWAY_HOST: 'gateway'
networks:
public-net:
aliases:
- r
- rest
volumes:
monolith-data: {}
gateway-data: {}
ui-data: {}
rest-data: {}
networks:
public-net: