From 07a93af3599c1b9be9ea51c2ce375a19718793c0 Mon Sep 17 00:00:00 2001 From: kianiadee Date: Thu, 21 May 2026 14:42:31 +0300 Subject: [PATCH] fix(compose): build context relative to repo root, not compose dir --- coolify/log-proxy.compose.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/coolify/log-proxy.compose.yml b/coolify/log-proxy.compose.yml index 03cdf73..4d6239d 100644 --- a/coolify/log-proxy.compose.yml +++ b/coolify/log-proxy.compose.yml @@ -15,8 +15,10 @@ services: log-proxy: + # Paths are resolved relative to --project-directory (the repo root), + # which Coolify sets, NOT the compose file's directory. build: - context: ../log-proxy + context: ./log-proxy dockerfile: Dockerfile restart: unless-stopped