-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
69 lines (63 loc) · 1.36 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
version: '3'
services:
# 1
mongodb:
image: mongo
ports:
- '27017:27017'
container_name: mongodb
volumes:
- ./db/:/data/db
# 2
products:
build:
dockerfile: Dockerfile
context: ./products
container_name: products
ports:
- '8002:8002'
restart: always
depends_on:
- 'mongodb'
volumes:
- .:/app
- /app/products/node_modules
# 3
shopping:
build:
dockerfile: Dockerfile
context: ./shopping
container_name: shopping
ports:
- '8003:8003'
restart: always
depends_on:
- 'mongodb'
volumes:
- .:/app
- /app/shopping/node_modules
# 4
customer:
build:
dockerfile: Dockerfile
context: ./customer
container_name: customer
ports:
- '8001:8001'
restart: always
depends_on:
- 'mongodb'
volumes:
- .:/app
- /app/customer/node_modules
# 5
nginx-proxy:
build:
dockerfile: Dockerfile
context: ./proxy
depends_on:
- products
- shopping
- customer
ports:
- '80:80'