fix(docker): nginx health check

nginx health check always results in "unhealthy":

There is no such option "--no-verify" for curl.
We can use "-k" or "--insecure" for disabling SSL checks.

Signed-off-by: moson-mo <mo-son@mailbox.org>
This commit is contained in:
moson-mo 2023-01-13 10:14:53 +01:00
parent ff44eb02de
commit 2150f8bc19
No known key found for this signature in database
GPG key ID: 4A4760AB4EE15296

View file

@ -1,2 +1,2 @@
#!/bin/bash
exec curl --no-verify -q https://localhost:8444
exec curl -k -q https://localhost:8444