mirror of
https://github.com/fabrice404/olympics-calendar.git
synced 2025-12-11 13:29:35 +00:00
22 lines
329 B
YAML
22 lines
329 B
YAML
services:
|
|
scraper:
|
|
container_name: scraper
|
|
build: ./scraper
|
|
restart: unless-stopped
|
|
volumes:
|
|
- cache:/app/cache
|
|
- data:/app/output
|
|
|
|
ui:
|
|
container_name: ui
|
|
build: ./ui
|
|
ports:
|
|
- "3000:3000"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- data:/app/data
|
|
|
|
volumes:
|
|
cache:
|
|
data:
|