diff options
author | Cuban Pete <19605822+cubanp3te@users.noreply.github.com> | 2021-09-04 06:16:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-04 13:16:59 +0800 |
commit | 156b91baffc5e884e1635f8f684a449695c048f8 (patch) | |
tree | 984f94a448a67dd1e4a32229209c2afd5d42a24a /Dockerfile | |
parent | 764e901689484407d6c30d3655c8a1d62bc7c7e2 (diff) |
docker: add Healthcheck support (#6522)
Co-authored-by: ᴜɴᴋɴᴡᴏɴ <jc@unknwon.io>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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/"] |