entrypoint fix for no log

This commit is contained in:
yusing 2024-03-07 04:58:15 +08:00
parent a8b97e17f6
commit 71cd2f3948

View file

@ -11,5 +11,5 @@ if [ "$DEBUG" == "1" ]; then
/app/go-proxy -v=$VERBOSITY -log_dir=log --stderrthreshold=0 2>> log/go-proxy.log &
tail -f /dev/null
else
/app/go-proxy -v=$VERBOSITY -log_dir=log --stderrthreshold=0
/app/go-proxy -v=$VERBOSITY -log_dir=log --stderrthreshold=0 2>> log/go-proxy.log
fi