mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 03:13:02 +00:00
fix: make health check in Dockerfile honor context path setting (#407)
This commit is contained in:
parent
0c86587b5d
commit
7b52663383
1 changed files with 1 additions and 1 deletions
|
@ -53,6 +53,6 @@ RUN ["chmod", "g+w", "."]
|
|||
RUN ["chmod", "+x", "./bootstrap.sh"]
|
||||
|
||||
HEALTHCHECK --interval=30s --retries=3 --timeout=1s \
|
||||
CMD curl -f http://localhost:${LD_SERVER_PORT:-9090}/health || exit 1
|
||||
CMD curl -f http://localhost:${LD_SERVER_PORT:-9090}/${LD_CONTEXT_PATH}health || exit 1
|
||||
|
||||
CMD ["./bootstrap.sh"]
|
||||
|
|
Loading…
Reference in a new issue