-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
51 lines (47 loc) · 1.04 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
version: '3'
services:
manager:
build: ./manager
env_file:
- .env
volumes:
- ./manager/app:/app
- ./manager/data:/data
ports:
- 8214:8000
example-extractor:
build: ./example-extractor
env_file:
- .env
volumes:
- ./example-extractor/app:/app
gmail-extractor:
build:
context: ./gmail-extractor
args:
MANAGER_ENDPOINT: ${MANAGER_ENDPOINT}
EMAIL_ADDRESS: ${EMAIL_ADDRESS}
EMAIL_APP_PASSWORD: ${EMAIL_APP_PASSWORD}
env_file:
- .env
volumes:
- ./gmail-extractor/app:/app
- ./gmail-extractor/data:/data
infodengue-extractor:
build:
context: ./infodengue-extractor
args:
MANAGER_ENDPOINT: ${MANAGER_ENDPOINT}
env_file:
- .env
volumes:
- ./infodengue-extractor/app:/app
sivep-extractor:
build:
context: ./sivep-extractor
args:
MANAGER_ENDPOINT: ${MANAGER_ENDPOINT}
env_file:
- .env
volumes:
- ./sivep-extractor/app:/app