add healthcheck.

This commit is contained in:
Miroslav Šedivý
2021-03-19 15:04:01 +01:00
parent cd15e0b03e
commit 5a79212b32
3 changed files with 16 additions and 0 deletions

View File

@ -110,6 +110,11 @@ ENV NEKO_SERVER_BIND=:8080
# copy executabe from previous stage
COPY --from=build /src/bin/neko /usr/bin/neko
#
# add healthcheck
HEALTHCHECK --interval=10s --timeout=5s --retries=8 \
CMD wget -O - http://localhost:${NEKO_SERVER_BIND#*:}/api/health || exit 1
#
# run neko
CMD ["/usr/bin/supervisord", "-c", "/etc/neko/supervisord.conf"]