Files
motorsports/dockercompose.yml
T
2026-06-08 19:44:24 +03:00

16 lines
494 B
YAML

services:
torrent-vahti:
image: python:3.11-slim
container_name: torrent-vahti-ajo
restart: unless-stopped
volumes:
- /mnt/media/admin/motorsports:/app
- /mnt/media/media/Downloads/torrent:/watch
working_dir: /app
environment:
- TZ=Europe/Helsinki
# LISÄTTY lxml PAKETTI PIP INSTALLIIN:
command: >
sh -c "pip install --no-cache-dir requests beautifulsoup4 lxml &&
while true; do python torrent_vahti.py; sleep 1800; done"