Bot Updating Templated Files

This commit is contained in:
LinuxServer-CI
2022-02-21 20:09:50 +01:00
parent 019af1f93f
commit 1d389c97a4

View File

@@ -82,6 +82,10 @@ Use `WHITELIST` to enable a list of ip as whitelist. This enable support for `rp
Use `HOST_WHITELIST` to enable an list of dns names as host-whitelist. This enable support for `rpc-host-whitelist`. When `HOST_WHITELIST` is empty support for host-whitelist is disabled.
## Use alternative Transmission torrent ports
Use `PEERPORT` to specify the port(s) Transmission should listen on. This disables random port selection. This should be the same as the port mapped in your docker configuration.
## Usage
Here are some example snippets to help you get started creating a container.
@@ -103,8 +107,8 @@ services:
- USER=username #optional
- PASS=password #optional
- WHITELIST=iplist #optional
- PEERPORT=peerport #optional
- HOST_WHITELIST=dnsnane list #optional
- PEERPORT=51413 #optional
volumes:
- <path to data>:/config
- <path to downloads>:/downloads
@@ -128,8 +132,8 @@ docker run -d \
-e USER=username `#optional` \
-e PASS=password `#optional` \
-e WHITELIST=iplist `#optional` \
-e PEERPORT=peerport `#optional` \
-e HOST_WHITELIST=dnsnane list `#optional` \
-e PEERPORT=51413 `#optional` \
-p 9091:9091 \
-p 51413:51413 \
-p 51413:51413/udp \
@@ -156,8 +160,8 @@ Container images are configured using parameters passed at runtime (such as thos
| `-e USER=username` | Specify an optional username for the interface |
| `-e PASS=password` | Specify an optional password for the interface |
| `-e WHITELIST=iplist` | Specify an optional list of comma separated ip whitelist. Fill rpc-whitelist setting. |
| `-e PEERPORT=peerport` | Specify an optional port for torrent TCP/UDP connections. Fill peer-port setting. |
| `-e HOST_WHITELIST=dnsnane list` | Specify an optional list of comma separated dns name whitelist. Fill rpc-host-whitelist setting. |
| `-e PEERPORT=51413` | Specify an optional alternative port for Tranmission to listen for TCP/UDP connections on. Fill peer-port and disables peer-port-random-on-start settings. |
| `-v /config` | Where transmission should store config files and logs. |
| `-v /downloads` | Local path for downloads. |
| `-v /watch` | Watch folder for torrent files. |