forked from open-webui/open-webui
		
	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
This commit is contained in:
		
							parent
							
								
									b6d9cf3bc8
								
							
						
					
					
						commit
						1cbbfc7c66
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -4,4 +4,4 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | ||||||
| cd "$SCRIPT_DIR" || exit | cd "$SCRIPT_DIR" || exit | ||||||
| 
 | 
 | ||||||
| PORT="${PORT:-8080}" | 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 '*' | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Giulio De Pasquale
						Giulio De Pasquale