2023-02-28 18:18:29 +00:00
|
|
|
version: "2.1"
|
2023-03-01 10:14:53 +00:00
|
|
|
|
2023-02-28 18:18:29 +00:00
|
|
|
services:
|
|
|
|
transmission:
|
|
|
|
image: lscr.io/linuxserver/transmission:latest
|
|
|
|
container_name: transmission
|
|
|
|
environment:
|
|
|
|
- PUID=1000
|
|
|
|
- PGID=1000
|
2023-03-01 10:14:53 +00:00
|
|
|
- TZ=Europe/Berlin
|
2023-02-28 18:18:29 +00:00
|
|
|
volumes:
|
2023-03-01 10:14:53 +00:00
|
|
|
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/config:/config'
|
2023-02-28 18:18:29 +00:00
|
|
|
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/downloads:/downloads'
|
|
|
|
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/watch:/watch'
|
|
|
|
ports:
|
2023-03-01 10:14:53 +00:00
|
|
|
- 9091:9091 # web ui
|
|
|
|
- 51413:51413 # torrent port tcp
|
|
|
|
- 51413:51413/udp # torrent port udp
|
|
|
|
restart: unless-stopped
|