Merge pull request #3208 from nextcloud/enh/3197/improve-notify-push

ntofiy-push - improve healthcheck
This commit is contained in:
Simon L 2023-08-18 21:27:08 +02:00 committed by GitHub
commit cf41079c4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -1,6 +1,7 @@
FROM alpine:3.18.2 FROM alpine:3.18.2
COPY --chmod=775 start.sh /start.sh COPY --chmod=775 start.sh /start.sh
COPY --chmod=775 healthcheck.sh /healthcheck.sh
RUN set -ex; \ RUN set -ex; \
apk add --no-cache \ apk add --no-cache \
@ -17,5 +18,5 @@ RUN set -ex; \
USER 33 USER 33
ENTRYPOINT ["/start.sh"] ENTRYPOINT ["/start.sh"]
HEALTHCHECK CMD nc -z localhost 7867 || exit 1 HEALTHCHECK CMD /healthcheck.sh
LABEL com.centurylinklabs.watchtower.enable="false" LABEL com.centurylinklabs.watchtower.enable="false"

View file

@ -0,0 +1,7 @@
#!/bin/bash
if ! nc -z "$NEXTCLOUD_HOST" 9000; then
exit 0
fi
nc -z localhost 7867 || exit 1