first
This commit is contained in:
22
docker-compose.yml
Normal file
22
docker-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
scaev-scraper:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: scaev-scraper
|
||||
volumes:
|
||||
# Mount output directory to persist results
|
||||
- ./output:/app/output
|
||||
# Mount cache database to persist between runs
|
||||
- ./cache:/app/cache
|
||||
# environment:
|
||||
# Configuration via environment variables (optional)
|
||||
# Uncomment and modify as needed
|
||||
# RATE_LIMIT_SECONDS: 2
|
||||
# MAX_PAGES: 5
|
||||
# DOWNLOAD_IMAGES: False
|
||||
restart: unless-stopped
|
||||
# Uncomment to run in test mode
|
||||
# command: python src/main.py --test
|
||||
Reference in New Issue
Block a user