diff --git a/docker-compose.yml b/docker-compose.yml index 02b518a..8836551 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,15 +7,14 @@ services: 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) + # Mount to match config.py paths (/mnt/okcomputer/output) + # This maps host ./output directory to container /mnt/okcomputer/output + - ./output:/mnt/okcomputer/output + environment: + # Configuration via environment variables (optional - overrides config.py) # Uncomment and modify as needed - # RATE_LIMIT_SECONDS: 2 - # MAX_PAGES: 5 + RATE_LIMIT_SECONDS: 0.5 + # MAX_PAGES: 50 # DOWNLOAD_IMAGES: False restart: unless-stopped # Uncomment to run in test mode