blob: d9412c509c6b60699dc94a05cb7ff89f138c55e1 (
plain)
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
|
services:
app:
container_name: tokyo-app
build:
context: .
target: app
expose:
- "3000"
volumes:
- ./data:/app/data
environment:
- NODE_ENV=production
- DB_PATH=/app/data/events.db
restart: unless-stopped
networks:
- web
scraper:
build:
context: .
target: scraper
volumes:
- ./data:/app/data
environment:
- NODE_ENV=production
- DB_PATH=/app/data/events.db
depends_on:
- app
restart: unless-stopped
networks:
web:
external: true
name: web
|