faster healthcheck on start
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (arm64) (push) Successful in 22s
Container Publish / build-image (amd64) (push) Successful in 23s
Container Publish / update docker manifest (push) Successful in 13s

This commit is contained in:
2025-07-31 09:39:42 +02:00
parent d4a3894a93
commit 2b0b477c7d

View File

@@ -23,6 +23,6 @@ ENV \
WEBDAV_PORT=8080 \ WEBDAV_PORT=8080 \
TZ=Etc/UTC TZ=Etc/UTC
HEALTHCHECK --timeout=10s CMD curl --silent --fail -o /dev/null http://127.0.0.1:80/ HEALTHCHECK --timeout=10s --start-period=5s CMD curl --silent --fail -o /dev/null http://127.0.0.1:80/
ENTRYPOINT [ "/sbin/tini", "/app/entrypoint.sh" ] ENTRYPOINT [ "/sbin/tini", "/app/entrypoint.sh" ]