-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
62 lines (56 loc) · 1.09 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
version: '3.9'
services:
ads:
build:
context: ./ads
dockerfile: Dockerfile
image: ads
env_file:
- ./ads/.env
volumes:
- ./ads:/efiss-backend/ads
auth:
build:
context: ./auth
dockerfile: Dockerfile
image: auth
env_file:
- ./auth/.env
volumes:
- ./auth:/efiss-backend/auth
mailer:
build:
context: ./mailer
dockerfile: Dockerfile
image: mailer
env_file:
- ./mailer/.env
volumes:
- ./mailer:/efiss-backend/mailer
normal-user:
build:
context: ./normal-user
dockerfile: Dockerfile
image: normal-user
env_file:
- ./normal-user/.env
volumes:
- ./normal-user:/efiss-backend/normal-user
product:
build:
context: ./product
dockerfile: Dockerfile
image: product
env_file:
- ./product/.env
volumes:
- ./product:/efiss-backend/product
search:
build:
context: ./search
dockerfile: Dockerfile
image: search
env_file:
- ./search/.env
volumes:
- ./search:/efiss-backend/search