From 37da6885eec883048b1b0f8bda513c0e65453af3 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Wed, 29 Jan 2025 23:06:42 -0600 Subject: [PATCH] fix: use laravel up health endpoint --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 5c175bd..716a3aa 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -58,7 +58,7 @@ COPY ./docker/supervisord.conf /etc/supervisor/conf.d/supervisord.conf EXPOSE 80 # Set up healthcheck -HEALTHCHECK --interval=30s --timeout=10s --retries=3 CMD curl -f http://localhost || exit 1 +HEALTHCHECK --interval=30s --timeout=10s --retries=3 CMD curl -f http://localhost/up || exit 1 # Run everything else ENTRYPOINT ["/bin/bash", "./docker/entrypoint.sh"]