-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdocker-compose.yml
31 lines (27 loc) · 897 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
version: "3"
services:
master-service:
network_mode: host
image: "agungdp22/master-service:latest"
volumes:
- ${PWD}/services/master-service/.env:/root/services/master-service/.env
auth-service:
network_mode: host
image: "agungdp22/auth-service:latest"
volumes:
- ${PWD}/services/auth-service/.env:/root/services/auth-service/.env
user-service:
network_mode: host
image: "agungdp22/user-service:latest"
volumes:
- ${PWD}/services/user-service/.env:/root/services/user-service/.env
storage-service:
network_mode: host
image: "agungdp22/storage-service:latest"
volumes:
- ${PWD}/services/storage-service/.env:/root/services/storage-service/.env
line-chatbot:
network_mode: host
image: "agungdp22/line-chatbot:latest"
volumes:
- ${PWD}/services/line-chatbot/.env:/root/services/line-chatbot/.env