Skip to content

Commit

Permalink
Debugging healthcheck.
Browse files Browse the repository at this point in the history
  • Loading branch information
mguaylam committed Jul 11, 2024
1 parent e57b97d commit 230211e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ RUN go build -o ./communautoFinderBot

EXPOSE 8443 8444

HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 CMD curl http://localhost:8444/health || exit 1
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
CMD curl http://localhost:8444/health || exit 1

CMD [ "./communautoFinderBot" ]

0 comments on commit 230211e

Please sign in to comment.