-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
71 lines (63 loc) · 1.28 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
version: "3.8"
services:
user-service:
build: ./user-service
env_file: ./user-service/.env
ports:
- "3000:3000"
depends_on:
- mongodb
networks:
- ecommerce-network
product-catalog-service:
build: ./product-catalog-service
env_file: ./product-catalog-service/.env
ports:
- "3001:3001"
depends_on:
- mongodb
networks:
- ecommerce-network
shopping-cart-service:
build: ./shopping-cart-service
env_file: ./shopping-cart-service/.env
ports:
- "3002:3002"
depends_on:
- mongodb
- product-catalog-service
networks:
- ecommerce-network
order-service:
build: ./order-service
env_file: ./order-service/.env
ports:
- "3003:3003"
depends_on:
- mongodb
- user-service
- product-catalog-service
networks:
- ecommerce-network
payment-service:
build: ./payment-service
env_file: ./payment-service/.env
ports:
- "3004:3004"
depends_on:
- mongodb
networks:
- ecommerce-network
mongodb:
image: mongo:latest
ports:
- "27017:27017"
volumes:
- mongodb_data:/data/db
networks:
- ecommerce-network
volumes:
mongodb_data:
networks:
ecommerce-network:
driver: bridge