aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorCuban Pete <19605822+cubanp3te@users.noreply.github.com>2021-09-04 06:16:59 +0100
committerGitHub <noreply@github.com>2021-09-04 13:16:59 +0800
commit156b91baffc5e884e1635f8f684a449695c048f8 (patch)
tree984f94a448a67dd1e4a32229209c2afd5d42a24a /Dockerfile
parent764e901689484407d6c30d3655c8a1d62bc7c7e2 (diff)
docker: add Healthcheck support (#6522)
Co-authored-by: ᴜɴᴋɴᴡᴏɴ <jc@unknwon.io>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 51908346..a90c6612 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -40,5 +40,6 @@ RUN ./docker/finalize.sh
# Configure Docker Container
VOLUME ["/data", "/backup"]
EXPOSE 22 3000
+HEALTHCHECK CMD (nc -z -w 3 localhost:22 && curl -o /dev/null -sS http://localhost:3000/healthcheck) || exit 1
ENTRYPOINT ["/app/gogs/docker/start.sh"]
CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]