From 450b0cff29225d3eb1119eafc0e52b3614f97415 Mon Sep 17 00:00:00 2001 From: WhiteX Date: Thu, 12 Jun 2025 15:47:50 +0300 Subject: [PATCH] fix: update healthcheck URL to use the correct port for the app service --- docker-compose-coolify.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker-compose-coolify.yml b/docker-compose-coolify.yml index cd433a24..3387859f 100644 --- a/docker-compose-coolify.yml +++ b/docker-compose-coolify.yml @@ -10,6 +10,8 @@ services: # Mount the persistent volume to the actual uploads directory (/app/api/content) volumes: - app-uploads:/app/api/content + ports: + - "3000" environment: - NEXTAUTH_SECRET=${NEXTAUTH_SECRET} - NEXTAUTH_URL=${NEXTAUTH_URL} @@ -43,7 +45,7 @@ services: - CMD - curl - '-f' - - 'http://127.0.0.1:80' + - 'http://127.0.0.1:3000' interval: 2s timeout: 10s retries: 10