FIX: Changed all .yml to .yaml in orded to have the same way

This commit is contained in:
2025-08-28 12:35:48 +02:00
parent dc94b51647
commit fa1f342c95
16 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
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
healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:9091 || exit 1"]
interval: 1m
timeout: 10s
retries: 3