With the latest Docker build that was released, the unauthenticated SOCKS5 proxy configuration no longer works. The container continually reboots and emits the following log message:
Error: REQUIRE_AUTH is true, but PROXY_USER and PROXY_PASSWORD are not set. The application will now exit.
Here's my Docker run command I'm using:
docker run -d --name vpn-socks5
--network=container:vpn
--restart=unless-stopped
serjs/go-socks5-proxy
I tried adding --REQUIRE_AUTH=false but that errored stating that it was not a supported configuration parameter.