소스 검색

fix: use exec the uvicorn process to handle Docker's SIGTERM correctly

Replace the shell with the uvicorn process, so it becomes PID 1 and receives the signals directly
Giulio De Pasquale 1 년 전
부모
커밋
1cbbfc7c66
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      backend/start.sh

+ 1 - 1
backend/start.sh

@@ -4,4 +4,4 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
 cd "$SCRIPT_DIR" || exit
 
 PORT="${PORT:-8080}"
-uvicorn main:app --host 0.0.0.0 --port "$PORT" --forwarded-allow-ips '*'
+exec uvicorn main:app --host 0.0.0.0 --port "$PORT" --forwarded-allow-ips '*'