Skip to content

Instantly share code, notes, and snippets.

@phillijw
Last active January 22, 2022 03:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phillijw/6f35778a0dcde5b839158cee2d74521b to your computer and use it in GitHub Desktop.
Save phillijw/6f35778a0dcde5b839158cee2d74521b to your computer and use it in GitHub Desktop.
transmission (bittorrent)
docker run \
-d \
-v /var/lib/docker/volumes/transmission/config:/config \
-v /media/kingkong:/downloads \
-v /media/kingkong/torrents:/watch \
-e TZ=America/Chicago \
-p 9091:9091 -p 51413:51413 \
-p 51413:51413/udp \
--name=transmission \
--restart unless-stopped \
linuxserver/transmission
@phillijw
Copy link
Author

version: "2.1"
services:
  transmission:
    image: lscr.io/linuxserver/transmission
    container_name: transmission
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/Chicago
      #- TRANSMISSION_WEB_HOME=/combustion-release/ #optional
      #- USER=username #optional
      #- PASS=password #optional
      #- WHITELIST=iplist #optional
      #- HOST_WHITELIST=dnsnane list #optional
    volumes:
      - ./config:/config
      - /mnt/kingkong:/downloads
      - /mnt/kingkong/torrents:/watch
    ports:
      - 9091:9091
      - 51413:51413
      - 51413:51413/udp
    restart: unless-stopped

Port forward 51413 to the container

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment