Last active
June 23, 2023 10:22
-
-
Save doitian/f39808ea87545bc93b3076acb659069c to your computer and use it in GitHub Desktop.
[Transmission Docker Compose] #docker #qnap #nas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2.1" | |
services: | |
transmission: | |
image: linuxserver/transmission | |
container_name: transmission | |
environment: | |
- PUID=1000 | |
- PGID=0 | |
- TZ=Asia/Shanghai | |
volumes: | |
- /share/Transmission/config:/config | |
- /share/Transmission/downloads:/downloads | |
- /share/Transmission/watch:/watch | |
ports: | |
- 9091:9091 | |
- 51413:51413 | |
- 51413:51413/udp | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment