-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
executable file
·103 lines (95 loc) · 2.06 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
version: '3'
services:
config:
build:
context: ./config-server
dockerfile: dockerfile
ports:
- 8888:8888
networks:
- net
mem_limit: 512MB
hostname: config
container_name: config
discovery:
build:
context: ./discovery-service
dockerfile: dockerfile
ports:
- 8761:8761
networks:
- net
mem_limit: 512MB
depends_on:
- config
hostname: discovery
container_name: discovery
command: ["./wait-for-it.sh","config:8888","--timeout=100","--","/usr/local/bin/start.sh"]
gateway:
build:
context: ./gateway-service
dockerfile: dockerfile
ports:
- 8080:8080
networks:
- net
mem_limit: 512MB
depends_on:
- config
- discovery
hostname: gateway
container_name: gateway
command: ["./wait-for-it.sh","discovery:8761","--timeout=100","--","/usr/local/bin/start.sh"]
auth:
build:
context: ./auth-service
dockerfile: dockerfile
ports:
- 8083:8083
networks:
- net
mem_limit: 512MB
depends_on:
- config
- discovery
- gateway
hostname: auth
container_name: auth
command: ["./wait-for-it.sh","gateway:8080","--timeout=100","--","/usr/local/bin/start.sh"]
patient:
build:
context: ./patient-service
dockerfile: dockerfile
ports:
- 8082:8082
networks:
- net
mem_limit: 512MB
depends_on:
- config
- discovery
- gateway
- auth
hostname: patient
container_name: patient
command: ["./wait-for-it.sh","gateway:8080","--timeout=100","--","/usr/local/bin/start.sh"]
provider:
build:
context: ./provider-service
dockerfile: dockerfile
ports:
- 8081:8081
networks:
- net
mem_limit: 512MB
depends_on:
- config
- discovery
- gateway
- auth
hostname: provider
container_name: provider
command: ["./wait-for-it.sh","gateway:8080","--timeout=100","--","/usr/local/bin/start.sh"]
networks:
net:
driver: bridge