Avoid unhealthy container when Frigate is stopping (#18021)

This commit is contained in:
Felipe Santos
2025-05-07 21:43:51 -03:00
committed by GitHub
parent ac8e647b92
commit 52d94231c7
3 changed files with 8 additions and 1 deletions

View File

@@ -260,7 +260,7 @@ ENTRYPOINT ["/init"]
CMD []
HEALTHCHECK --start-period=300s --start-interval=5s --interval=15s --timeout=5s --retries=3 \
CMD curl --fail --silent --show-error http://127.0.0.1:5000/api/version || exit 1
CMD test -f /dev/shm/.frigate-is-stopping && exit 0; curl --fail --silent --show-error http://127.0.0.1:5000/api/version || exit 1
# Frigate deps with Node.js and NPM for devcontainer
FROM deps AS devcontainer