Includes transmission, gluetun, sonarr, radarr stacks Includes framework for adding plex, tautulli, prowlarr, overseerr, requestrr, and trash guides sync stacks Includes port-watcher docker container that monitors gluetun port forwarding file and sets transmission peer_port automatically
8 lines
138 B
Docker
8 lines
138 B
Docker
FROM python:3.11-alpine
|
|
|
|
WORKDIR /app
|
|
COPY port-watcher.py .
|
|
|
|
RUN pip install watchdog transmission-rpc
|
|
|
|
CMD ["python", "port-watcher.py"] |