-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
53 lines (51 loc) · 972 Bytes
/
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
version: "3"
services:
products:
build:
dockerfile: Dockerfile
context: ./products
container_name: products
ports:
- "8002:8002"
restart: always
volumes:
- .:/app
- /app/products/node_modules
env_file:
- ./products/.env
shopping:
build:
dockerfile: Dockerfile
context: ./shopping
container_name: shopping
ports:
- "8003:8003"
restart: always
volumes:
- .:/app
- /app/shopping/node_modules
env_file:
- ./shopping/.env
customer:
build:
dockerfile: Dockerfile
context: ./customer
container_name: customer
ports:
- "8001:8001"
restart: always
volumes:
- .:/app/
- /app/customer/node_modules
env_file:
- ./customer/.env
nginx-proxy:
build:
dockerfile: Dockerfile
context: ./proxy
depends_on:
- products
- shopping
- customer
ports:
- 80:80