-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
56 lines (53 loc) · 1.25 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
56 lines (53 loc) · 1.25 KB
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
services:
api:
image: mail-capture-api-dev
build:
context: .
dockerfile: Dockerfile.dev
args:
NGROK_AUTH_TOKEN: ${NGROK_AUTH_TOKEN}
container_name: mail-capture-api
env_file:
- .env.development
ports:
- "${PORT:-8080}:${PORT:-8080}"
restart: unless-stopped
networks:
- mail-capture-network
validation-worker:
image: mail-capture-validation-dev
build:
context: .
dockerfile: Dockerfile.dev
args:
NGROK_AUTH_TOKEN: ${NGROK_AUTH_TOKEN}
container_name: mail-capture-validation-worker
env_file:
- .env.development
command: node dist/src/validation-worker-main.js
restart: unless-stopped
networks:
- mail-capture-network
depends_on:
- api
scraper-worker:
image: mail-capture-scraper-dev
build:
context: .
dockerfile: Dockerfile.dev
args:
NGROK_AUTH_TOKEN: ${NGROK_AUTH_TOKEN}
container_name: mail-capture-scraper-worker
env_file:
- .env.development
command: node dist/src/scraper-worker-main.js
restart: unless-stopped
networks:
- mail-capture-network
depends_on:
- api
stdin_open: true
tty: true
networks:
mail-capture-network:
driver: bridge