Skip to content

Instantly share code, notes, and snippets.

@yknext
Created June 26, 2019 09:01
Show Gist options
  • Save yknext/e396f32514c07a1e78429ea5f4446fe6 to your computer and use it in GitHub Desktop.
Save yknext/e396f32514c07a1e78429ea5f4446fe6 to your computer and use it in GitHub Desktop.
raspberry-docker-transmission
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