This repository has been archived by the owner on Jun 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Service Configuration: Transmission
Connor Bell (Makeshift) edited this page Nov 8, 2021
·
2 revisions
Transmission is used to download torrents.
- Stop Transmission
docker-compose stop transmission
- Navigate to
runtime_conf/transmission/
- Edit
settings.json
with your favourite text editorsudo nano settings.json
- Below are some recommended settings
Setting String | Notes | Required or Recommended? |
---|---|---|
"download-dir": "/shared/merged/downloads/transmission/default" |
Required | |
"incomplete-dir": "/shared/merged/downloads/transmission/incomplete" |
Recommended | |
"blocklist-enabled": true |
Recommended | |
"blocklist-url": "https://github.com/Naunter/BT_Blocklists/raw/master/bt_blocklists.gz" |
An automatically updating blocklist I found | Recommended |
"preallocation": 0 |
Stops Transmission from using disk space before it needs it. Slows down downloads, but makes it less likely for your local disk to fill up with stalled torrents | Recommended |
"rpc-host-whitelist-enabled": false |
||
If you're running Transmission from behind a reverse proxy, you might need this, or to add your domain to the rpc-host-whitelist
|
- See the Transmission Wiki if you wish to change any other settings, eg. stopping seeding after a certain point, etc.
- Start Transmission
docker-compose up -d transmission