-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
78 lines (73 loc) · 1.4 KB
/
docker-compose.yml
File metadata and controls
78 lines (73 loc) · 1.4 KB
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
version: "3"
services:
tmp-user-service:
build: ./user-service
container_name: tmp-user-service
expose:
- "8000"
ports:
- "8000:8000"
env_file:
- '.env'
networks:
- app-network
tmp-customer-service:
build: ./customer-service
container_name: tmp-customer-service
expose:
- "8001"
ports:
- "8001:8001"
env_file:
- '.env'
depends_on:
- 'tmp-user-service'
networks:
- app-network
tmp-product-service:
build: ./product-service
container_name: tmp-product-service
expose:
- "8002"
ports:
- "8002:8002"
env_file:
- '.env'
depends_on:
- 'tmp-user-service'
networks:
- app-network
tmp-order-service:
build: ./order-service
container_name: tmp-order-service
expose:
- "8003"
ports:
- "8003:8003"
env_file:
- '.env'
depends_on:
- 'tmp-user-service'
- 'tmp-customer-service'
- 'tmp-product-service'
networks:
- app-network
tmp-web-app:
build: ./web-app
container_name: tmp-portal
expose:
- "8005"
ports:
- "8005:8005"
env_file:
- '.env'
depends_on:
- 'tmp-user-service'
- 'tmp-customer-service'
- 'tmp-product-service'
- 'tmp-order-service'
networks:
- app-network
networks:
app-network:
external: false