add basic healthcheck support

This commit is contained in:
sn0w 2019-09-05 01:48:34 +00:00
parent d46bc718c1
commit 3ba7df64b4
2 changed files with 12 additions and 0 deletions

View File

@ -79,3 +79,12 @@ RUN \
cp ./config/dev.exs ./config/prod.secret.exs && \
BUILDTIME=1 /entrypoint.sh && \
rm ./config/prod.secret.exs
# Register healthcheck
# You might need to change these values on slow or busy servers.
HEALTHCHECK \
--interval=10s \
--start-period=50s \
--timeout=4s \
--retries=3 \
CMD curl -sSLf http://localhost:4000/api/pleroma/healthcheck || exit 1

View File

@ -30,6 +30,9 @@ config :pleroma, Pleroma.Repo,
# You should not change this.
config :pleroma, Pleroma.Uploaders.Local, uploads: "/uploads"
config :pleroma, :instance,
healthcheck: true
#
# vvv Your awesome config options go here vvv
#