fix: bind to 0.0.0.0 in docker

This commit is contained in:
Sylver 2024-02-11 00:35:20 +08:00
parent f4bc1d65e2
commit 8236d9ef42
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ cleanup() {
trap cleanup EXIT HUP INT QUIT PIPE TERM ERR
cd packages/api && npm run start &
cd packages/web && npm run start &
cd packages/web && HOST=0.0.0.0 npm run start &
wait -n
exit $?