Gipat/services/transmission/docker-compose.yml

25 lines
600 B
YAML
Raw Permalink Normal View History

2023-06-23 19:46:04 +00:00
version: '3'
services:
app:
image: lscr.io/linuxserver/transmission:latest
container_name: transmission
environment:
2023-11-19 12:00:37 +00:00
- PUID=0
2023-06-23 19:46:04 +00:00
- PGID=1000
- TZ=Etc/MSK
- USER=torrent
- PASS=torrent
# - WHITELIST= #optional
# - PEERPORT= #optional
# - HOST_WHITELIST= #optional
volumes:
- /mnt/Teka1/Videos:/mnt/Teka1/Videos
- /mnt/Teka2/Videos:/mnt/Teka2/Videos
2024-02-13 17:34:39 +00:00
- /mnt/Share:/mnt/Share
2023-06-23 19:46:04 +00:00
- ./data/config:/config
ports:
- 9091:9091
- 51413:51413
- 51413:51413/udp
2023-11-19 12:00:37 +00:00
restart: always