Created
June 26, 2019 09:01
-
-
Save yknext/e396f32514c07a1e78429ea5f4446fe6 to your computer and use it in GitHub Desktop.
raspberry-docker-transmission
This file contains hidden or 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" | |
services: | |
transmission: | |
image: linuxserver/transmission:arm32v7-latest | |
container_name: transmission | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- TZ=Asia/Shanghai | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- ./config:/config | |
- /data/Download/downloads:/downloads | |
- /data/Download/watch:/watch | |
ports: | |
- 9091:9091 | |
- 51413:51413 | |
- 51413:51413/udp | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment