mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-10-29 21:01:12 +00:00 
			
		
		
		
	Merge pull request #2844 from jjlin/healthcheck
Take `ROCKET_ADDRESS` into account in the Docker healthcheck
This commit is contained in:
		
				commit
				
					
						4cb5122e90
					
				
			
		
					 1 changed files with 5 additions and 1 deletions
				
			
		|  | @ -45,9 +45,13 @@ if [ -r "${CONFIG_FILE}" ]; then | |||
|     fi | ||||
| fi | ||||
| 
 | ||||
| addr="${ROCKET_ADDRESS}" | ||||
| if [ -z "${addr}" ] || [ "${addr}" = '0.0.0.0' ] || [ "${addr}" = '::' ]; then | ||||
|     addr='localhost' | ||||
| fi | ||||
| base_path="$(get_base_path "${DOMAIN}")" | ||||
| if [ -n "${ROCKET_TLS}" ]; then | ||||
|     s='s' | ||||
| fi | ||||
| curl --insecure --fail --silent --show-error \ | ||||
|      "http${s}://localhost:${ROCKET_PORT}${base_path}/alive" || exit 1 | ||||
|      "http${s}://${addr}:${ROCKET_PORT}${base_path}/alive" || exit 1 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue