-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
65 lines (65 loc) · 1.41 KB
/
docker-compose.yaml
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
version: "3"
services:
signature:
build:
dockerfile: Dockerfile
context: ./BE_Signature_Service
container_name: signature
ports:
- "3000:3000"
restart: always
volumes:
- .:/app
- /app/BE_Signature_Service/node_modules
env_file:
- ./BE_Signature_Service/.env
document:
build:
dockerfile: Dockerfile
context: ./BE_Document_Service
container_name: document
ports:
- "5050:5050"
restart: always
volumes:
- .:/app
- /app/BE_Document_Service/node_modules
env_file:
- ./BE_Document_Service/.env
notification:
build:
dockerfile: Dockerfile
context: ./BE_Notification_Service
container_name: notification
ports:
- "5000:5000"
restart: always
volumes:
- .:/app
- /app/BE_Notification_Service/node_modules
env_file:
- ./BE_Notification_Service/.env
authentication:
build:
dockerfile: Dockerfile
context: ./BE_Authentication_Service
container_name: authentication
ports:
- "7000:7000"
restart: always
volumes:
- .:/app
- /app/BE_Authentication_Service/node_modules
env_file:
- ./BE_Authentication_Service/.env
nginx-proxy:
build:
dockerfile: Dockerfile
context: ./Proxy
depends_on:
- signature
- document
- notification
- authentication
ports:
- 80:80