Taudris-IAC/stacks/transmission/docker-compose.yml

27 lines
962 B
YAML
Raw Normal View History

2022-08-28 10:59:39 -07:00
version: "3.8"
services:
transmission:
2023-02-09 02:26:15 -08:00
image: linuxserver/transmission
2022-08-28 10:59:39 -07:00
container_name: transmission
environment:
- PUID=1001 #set to match the user that has permission to the volume mount
- PGID=1001 #set to match the user that has permission to the volume mount
- TZ=America/Los_Angeles
#Specify an alternative UI. Options are: /combustion-release/, /transmission-web-control/, /kettu/, /flood-for-transmission/
2023-02-09 02:26:15 -08:00
#- TRANSMISSION_WEB_HOME=/flood-for-transmission/ #optional
2022-08-28 10:59:39 -07:00
#- TRANSMISSION_WEB_HOME=/transmission-web-control/ #optional
#- USER=MewseKee #optional
#- PASS=Mewmewm3w #optional
ports:
- "9091:9091/tcp"
- "51412:51412/tcp"
- "51412:51412/udp"
tmpfs:
- /tmp
volumes:
- /etc/transmission/torrent-files/.config:/config
- /etc/transmission/torrent-files/Pickup:/watch
- /etc/transmission/torrents:/downloads/
2023-02-09 02:26:15 -08:00
restart: unless-stopped