Fixed healthcheck command error (#995)

This commit is contained in:
Chris Plaatjes 2022-01-26 15:10:30 -05:00 committed by GitHub
parent 3c28e13209
commit efc5b0e43a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ EXPOSE 5000
WORKDIR /kavita
HEALTHCHECK --interval=300s --timeout=15 --start-period=30s --retries=3 CMD curl --fail http://localhost:5000 || exit 1
HEALTHCHECK --interval=300s --timeout=15s --start-period=30s --retries=3 CMD curl --fail http://localhost:5000 || exit 1
ENTRYPOINT [ "/bin/bash" ]
CMD ["/entrypoint.sh"]