Compare commits
1 Commits
master
...
healthchec
Author | SHA1 | Date | |
---|---|---|---|
|
3ba7df64b4 |
@ -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
|
||||
|
@ -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
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user