docker-bits/lsio/transmission/docker-compose.yaml

47 lines
1.8 KiB
YAML
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [Transmission](https://www.transmissionbt.com/) is designed for easy, powerful
# use. Transmission has the features you want from a BitTorrent client:
# encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and
# NAT-PMP port forwarding, webseed support, watch directories, tracker editing,
# global and per-torrent speed limits, and more.
2021-04-10 10:16:29 +00:00
---
version: "2.1"
services:
transmission:
image: ghcr.io/linuxserver/transmission
container_name: transmission
environment:
# for UserID
2022-04-02 00:45:58 +00:00
- PUID=${PUID:-1024}
# for GroupID
2021-04-10 10:16:29 +00:00
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
2021-04-13 00:58:58 +00:00
- TZ=${TZ:-Europe/Amsterdam}
2023-02-10 01:01:07 +00:00
# Specify the path to an alternative UI folder.
- TRANSMISSION_WEB_HOME= # optional
2021-04-10 10:16:29 +00:00
# Specify an optional username for the interface
- USER=username # optional
# Specify an optional password for the interface
- PASS=password # optional
2022-04-16 00:49:54 +00:00
# Specify an optional list of comma separated ip whitelist. Fills rpc-whitelist setting.
2021-04-10 10:16:29 +00:00
- WHITELIST=iplist # optional
2022-04-16 00:49:54 +00:00
# Specify an optional port for torrent TCP/UDP connections. Fills peer-port setting.
2022-02-25 14:44:19 +00:00
- PEERPORT=peerport # optional
2022-04-16 00:49:54 +00:00
# Specify an optional list of comma separated dns name whitelist. Fills rpc-host-whitelist setting.
- HOST_WHITELIST=dnsname list # optional
2021-04-10 10:16:29 +00:00
volumes:
# Where transmission should store config files and logs.
- ${BASEDIR:-/volume1/docker}/transmission/config:/config
# Local path for downloads.
- ${BASEDIR:-/volume1/docker}/transmission/downloads:/downloads
# Watch folder for torrent files.
- ${BASEDIR:-/volume1/docker}/transmission/watch:/watch
ports:
# WebUI
- 9091:9091
# Torrent Port TCP
- 51413:51413
# Torrent Port UDP
- 51413:51413/udp
restart: unless-stopped