1
0
Fork 0
mirror of https://github.com/navidrome/navidrome.git synced 2025-04-06 14:07:36 +03:00

feat: use ND_PORT env var in health check

This commit is contained in:
Deluan 2020-03-26 15:26:40 -04:00
parent 7febe05ed5
commit 39b9f818be

View file

@ -69,7 +69,7 @@ ENV ND_LOGLEVEL info
ENV ND_PORT 4533
EXPOSE ${ND_PORT}
HEALTHCHECK CMD wget -O- http://localhost:4533/ping || exit 1
HEALTHCHECK CMD wget -O- http://localhost:${ND_PORT}/ping || exit 1
WORKDIR /app
ENTRYPOINT ["/tini", "--"]