mirror of
https://github.com/tommytran732/Synapse-Docker
synced 2024-11-09 18:41:32 -05:00
Add Healthcheck
Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
parent
de51202503
commit
170e3cdddd
@ -63,6 +63,7 @@ RUN apk -U upgrade \
|
|||||||
zlib \
|
zlib \
|
||||||
tzdata \
|
tzdata \
|
||||||
xmlsec \
|
xmlsec \
|
||||||
|
curl \
|
||||||
&& adduser -g ${GID} -u ${UID} --disabled-password --gecos "" synapse \
|
&& adduser -g ${GID} -u ${UID} --disabled-password --gecos "" synapse \
|
||||||
&& rm -rf /var/cache/apk/*
|
&& rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
@ -80,3 +81,6 @@ VOLUME /data
|
|||||||
EXPOSE 8008/tcp 8009/tcp 8448/tcp
|
EXPOSE 8008/tcp 8009/tcp 8448/tcp
|
||||||
|
|
||||||
ENTRYPOINT ["python3", "start.py"]
|
ENTRYPOINT ["python3", "start.py"]
|
||||||
|
|
||||||
|
HEALTHCHECK --start-period=5s --interval=15s --timeout=5s \
|
||||||
|
CMD curl -fSs http://localhost:8008/health || exit 1
|
||||||
|
Loading…
Reference in New Issue
Block a user