Skip to content

Commit

Permalink
Update HEALTHCHECK in Dockerfile to not use DNS (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
StCyr authored Jul 1, 2024
1 parent 4129e03 commit 067b652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ebusd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ CMD [ "/run.sh" ]

# Health check
HEALTHCHECK --interval=5m --timeout=3s --start-period=90s \
CMD nc -z localhost 8888 || exit 1
CMD nc -z 127.0.0.1 8888 || exit 1

0 comments on commit 067b652

Please sign in to comment.