22 lines
638 B
YAML
22 lines
638 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
scaev:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: scaev
|
|
volumes:
|
|
# 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: 0.5
|
|
# MAX_PAGES: 50
|
|
# DOWNLOAD_IMAGES: False
|
|
restart: unless-stopped
|
|
# Uncomment to run in test mode
|
|
# command: python src/main.py --test
|