From 05b5e63762b4a6adcaa874cc35fd409ddf14c832 Mon Sep 17 00:00:00 2001 From: Tour Date: Thu, 4 Dec 2025 15:21:24 +0100 Subject: [PATCH] a --- docker-compose.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) 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