From 1cbdee31dc1da557538abd45d600aefd56859963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=97=AA=D1=94=CE=BD=CE=B9=CE=B7=20=E1=97=B7=CF=85=D0=BD?= =?UTF-8?q?=CA=9F?= Date: Sat, 14 Aug 2021 19:23:29 -0400 Subject: [PATCH] add health check back in --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2a0e4cd1..cb9a39e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,3 +48,6 @@ CMD [ "yarn", "build-and-start" ] # Expose given port EXPOSE ${PORT} + +# Run simple healthchecks every 5 mins, to check the Dashy's everythings great +HEALTHCHECK --interval=5m --timeout=2s --start-period=30s CMD yarn health-check