From 35276f66e906b937843e7fc462e9f2ca535737ff Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Tue, 7 Apr 2026 15:56:01 +0200 Subject: [PATCH] fix: use compose-prefixed Docker network name for deployments Docker Compose prefixes network names with the project name, so the actual network is cameleer-saas_cameleer, not just cameleer. Pass CAMELEER_DOCKER_NETWORK env var using COMPOSE_PROJECT_NAME. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index d0a64c7..4921cb5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -154,6 +154,7 @@ services: LOGTO_M2M_CLIENT_SECRET: ${LOGTO_M2M_CLIENT_SECRET:-} CAMELEER3_SERVER_ENDPOINT: http://cameleer3-server:8081 CAMELEER_AUTH_TOKEN: ${CAMELEER_AUTH_TOKEN:-default-bootstrap-token} + CAMELEER_DOCKER_NETWORK: ${COMPOSE_PROJECT_NAME:-cameleer-saas}_cameleer CLICKHOUSE_URL: jdbc:clickhouse://clickhouse:8123/cameleer labels: - traefik.enable=true