From 4d198479981cfbc5eb41e275f4459245e2936718 Mon Sep 17 00:00:00 2001 From: Devon Kupiec Date: Sat, 31 Oct 2020 03:59:47 -0600 Subject: [PATCH] Adds default env TRANSMISSION_RPC_PORT=9091 If UFW is enabled and no RPC port is provided, the firewall blocks access to the web interface fixes #1428 fixes #1431 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 27a3adbf2..32276bcf2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,6 +34,7 @@ ENV OPENVPN_USERNAME=**None** \ OPENVPN_PROVIDER=**None** \ GLOBAL_APPLY_PERMISSIONS=true \ TRANSMISSION_HOME=/data/transmission-home \ + TRANSMISSION_RPC_PORT=9091 \ CREATE_TUN_DEVICE=true \ ENABLE_UFW=false \ UFW_ALLOW_GW_NET=false \