Skip to content

Instantly share code, notes, and snippets.

@chinmay-sh
Created September 26, 2020 09:03
Show Gist options
  • Save chinmay-sh/4105607425822c314793857152b5fb78 to your computer and use it in GitHub Desktop.
Save chinmay-sh/4105607425822c314793857152b5fb78 to your computer and use it in GitHub Desktop.
transmission cloud client docker compose
version: "2.1"
services:
transmission:
image: linuxserver/transmission
container_name: transmission
environment:
- PUID=1000
- PGID=1000
- TRANSMISSION_WEB_HOME=/combustion-release/ #optional
- USER=user
- PASS=pass
volumes:
- ./transmission/config:/config
- ./transmission/downloads:/downloads
- ./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