Hi, I have a problem with the ENABLE_FLOOD argument which seems to stuck the startup.
When ENABLE_FLOOD=yes is defined, the startup stop here, and nothing happen after (and of course, the Flood WebUI is down). There is no error, nothing, after this line:
[info] Flood enabled, disabling initialisation of ruTorrent plugins...
When ENABLE_FLOOD=no is defined (and ruTorrent used consequently), everything starts normally and ruTorrent WebUI is accessible.
Thanks for your help!
docker run -d \
--cap-add=NET_ADMIN \
-p 9080:9080 \
-p 9443:9443 \
-p 8118:8118 \
-p 3000:3000 \
--name=rtorrentvpn \
-v /opt/torrents/data:/data \
-v /opt/torrents/config:/config \
-v /etc/localtime:/etc/localtime:ro \
-e VPN_ENABLED=yes \
-e VPN_REMOTE=nl.vpn.airdns.org \
-e VPN_PORT=443 \
-e VPN_PROTOCOL=udp \
-e VPN_DEVICE_TYPE=tun \
-e VPN_PROV=airvpn \
-e ENABLE_PRIVOXY=no \
-e ENABLE_FLOOD=yes \
-e LAN_NETWORK=192.168.1.0/24 \
-e NAME_SERVERS=8.8.8.8,8.8.4.4 \
-e DEBUG=false \
-e PHP_TZ=UTC \
-e UMASK=000 \
-e PUID=0 \
-e PGID=0 \
binhex/arch-rtorrentvpn
Edit: I managed to make it work by replacing floodServerHost: '127.0.0.1' by floodServerHost: '0.0.0.0' in config.js, not sure it is the best solution but it works.