mirror of
https://github.com/wallabag/docker
synced 2025-12-12 17:26:25 +00:00
Add healthcheck to image
- Move the healthcheck from the docker-compose example to the actual image. That makes sure all user of the image automatically get the healthcheck. - Change to `curl --fail || exit 1` as suggested in [docker documentation](https://docs.docker.com/reference/dockerfile/#healthcheck) - Add `--silent --show-error` so that docker health state contains the output of the HTTP call instead of curl progress bar - Set the user agent to make the logs more readable
This commit is contained in:
@@ -83,6 +83,8 @@ ENV PATH="${PATH}:/var/www/wallabag/bin"
|
||||
# Set console entry path
|
||||
WORKDIR /var/www/wallabag
|
||||
|
||||
HEALTHCHECK CMD curl --fail --silent --show-error --user-agent healthcheck http://localhost/api/info || exit 1
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["wallabag"]
|
||||
|
||||
Reference in New Issue
Block a user