Tweak transmission paths and settings

This commit is contained in:
David Stephens 2020-03-26 10:33:10 +00:00
parent 299a73705c
commit 6c7c66c9a1
2 changed files with 12 additions and 5 deletions

View file

@ -357,6 +357,8 @@ transmission_external_port: "51414"
transmission_openvpn_webui_port: "9091" transmission_openvpn_webui_port: "9091"
transmission_openvpn_external_port: "51415" transmission_openvpn_external_port: "51415"
transmission_openvpn_proxy_port: "3128" transmission_openvpn_proxy_port: "3128"
transmission_openvpn_ratio_limit_enabled: "true"
transmission_openvpn_ratio_limit: 2
# Transmission VPN Credentials # Transmission VPN Credentials
# If you're using Transmission with a VPN, you'll need to set these credentials. # If you're using Transmission with a VPN, you'll need to set these credentials.

View file

@ -16,22 +16,27 @@
pull: true pull: true
volumes: volumes:
- "/etc/localtime:/etc/localtime:ro" - "/etc/localtime:/etc/localtime:ro"
- "{{ transmission_download_directory }}:/storage/downloads:rw" - "{{ transmission_download_directory }}:/downloads:rw"
- "{{ transmission_config_directory }}:/config:rw" - "{{ transmission_config_directory }}:/config:rw"
- "{{ transmission_watch_directory }}:/storage/watch:rw" - "{{ transmission_watch_directory }}:/watch:rw"
- "/etc/timezone:/etc/timezone:ro" - "/etc/timezone:/etc/timezone:ro"
ports: ports:
- "{{ transmission_openvpn_webui_port }}:9091" - "{{ transmission_openvpn_webui_port }}:9091"
- "{{ transmission_openvpn_external_port }}:51413" - "{{ transmission_openvpn_external_port }}:51413"
- "{{ transmission_openvpn_proxy_port }}:3128"
env: env:
TRANSMISSION_HOME: "/config" TRANSMISSION_HOME: "/config"
TRANSMISSION_DOWNLOAD_DIR: "/storage/downloads/complete" TRANSMISSION_DOWNLOAD_DIR: "/downloads"
TRANSMISSION_INCOMPLETE_DIR: "/storage/downloads/incomplete" TRANSMISSION_INCOMPLETE_DIR: "/downloads/.incomplete"
TRANSMISSION_WATCH_DIR: "/storage/watch" TRANSMISSION_WATCH_DIR: "/watch"
TRANSMISSION_RATIO_LIMIT: "{{ transmission_openvpn_ratio_limit }}"
TRANSMISSION_RATIO_LIMIT_ENABLED: "{{ transmission_openvpn_ratio_limit_enabled }}"
OPENVPN_PROVIDER: "{{ openvpn_provider }}" OPENVPN_PROVIDER: "{{ openvpn_provider }}"
OPENVPN_USERNAME: "{{ openvpn_username }}" OPENVPN_USERNAME: "{{ openvpn_username }}"
OPENVPN_PASSWORD: "{{ openvpn_password }}" OPENVPN_PASSWORD: "{{ openvpn_password }}"
OPENVPN_CONFIG: "{{ openvpn_config }}" OPENVPN_CONFIG: "{{ openvpn_config }}"
WEBPROXY_ENABLED: "true"
WEBPROXY_PORT: "3128"
PUID: "{{ transmission_user_id }}" PUID: "{{ transmission_user_id }}"
PGID: "{{ transmission_group_id }}" PGID: "{{ transmission_group_id }}"
LOCAL_NETWORK: "{{ transmission_local_network }}" LOCAL_NETWORK: "{{ transmission_local_network }}"