Files
cbz_downloader/docker-compose.yml
T
Iain Bradley 4ca7f9667a First commit
2025-10-07 12:55:34 +01:00

18 lines
569 B
YAML

version: '3.8'
services:
cbz-downloader:
build: .
container_name: 2000ad-downloader
environment:
- EMAIL=${EMAIL:-your_email@example.com}
- PASSWORD=${PASSWORD:-your_password}
- OUTPUT_DIR=/app/downloads
volumes:
- ./downloads:/app/downloads
# Optional: Mount the script for easy editing without rebuilding
- ./download_cbz.py:/app/download_cbz.py
restart: "no"
# Uncomment below to run on a schedule instead of immediately
# command: sh -c "while true; do python download_cbz.py && sleep 86400; done"