added openvpn transmission, splitted into different folders

This commit is contained in:
Maksym Buz
2025-02-06 14:29:09 +01:00
committed by GitHub
parent 1be3b00111
commit ce181146d2
4 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# Optional credentials for securing the transmission web interface
USERNAME= 'username'
PASSWORD= 'password'
# File paths
PATH_TO_CONFIG= '/path/to/config'
PATH_TO_DOWNLOADS= '/path/to/downloads'
PATH_TO_WATCH_FOLDER= '/path/to/watch/folder'

View File

@@ -0,0 +1,24 @@
---
services:
transmission:
image: lscr.io/linuxserver/transmission:latest
container_name: transmission
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Warsaw
- TRANSMISSION_WEB_HOME= #optional
- USER=${USERNAME} #optional
- PASS=${PASSWORD} #optional
- WHITELIST= #optional
- PEERPORT= #optional
- HOST_WHITELIST= #optional
volumes:
- ${PATH_TO_CONFIG}:/config
- ${PATH_TO_DOWNLOADS}:/downloads #optional
- ${PATH_TO_WATCH_FOLDER}:/watch #optional
ports:
- 9091:9091
- 51413:51413
- 51413:51413/udp
restart: unless-stopped