-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (42 loc) · 917 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
version: '1'
services:
inventory:
build:
context: ./inventory-service
dockerfile: Dockerfile
container_name: inventory-service
volumes:
- ./inventory-service:/usr/src/app
ports:
- "5001:3001"
restart: always
shipping:
build:
context: ./shipping-service
dockerfile: Dockerfile
container_name: shipping-service
volumes:
- ./shipping-service:/usr/src/app
ports:
- "5008:3002"
restart: always
users:
build:
context: ./users-service
dockerfile: Dockerfile
container_name: users-service
volumes:
- ./users-service:/usr/src/app
ports:
- "5005:3003"
restart: always
billing:
build:
context: ./billing-service
dockerfile: Dockerfile
container_name: billing-service
volumes:
- ./billing-service:/usr/src/app
ports:
- "5009:3000"
restart: always