I know there is a transmission package in the casaos store but there’s also a fork of transmission with openvpn for those who want more privacy to connect to the VPN of their choice. Here’s the git page: GitHub - haugene/docker-transmission-openvpn: Docker container running Transmission torrent client with WebUI over an OpenVPN tunnel
version: ‘3.3’
services:
transmission-openvpn:
cap_add:
- NET_ADMIN
volumes:
- ‘/your/storage/path/:/data’
- ‘/your/config/path/:/config’
environment:
- OPENVPN_PROVIDER=PIA
- OPENVPN_CONFIG=france
- OPENVPN_USERNAME=user
- OPENVPN_PASSWORD=pass
- LOCAL_NETWORK=192.168.0.0/16
logging:
driver: json-file
options:
max-size: 10m
ports:
- ‘9091:9091’
image: haugene/transmission-openvpn