From 9aeb5f04316ecc2d5a1f1278ddf69e6e7c765337 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Tue, 7 Oct 2025 22:18:21 +0200 Subject: [PATCH] notesnook: hardcoded variables, to debug failing containers It seems the variables are not resolved --- docker/tools/notesnook/docker-compose.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docker/tools/notesnook/docker-compose.yml b/docker/tools/notesnook/docker-compose.yml index 5aef329..0d68156 100644 --- a/docker/tools/notesnook/docker-compose.yml +++ b/docker/tools/notesnook/docker-compose.yml @@ -138,8 +138,8 @@ services: SSE_SERVER_PORT: 7264 SSE_SERVER_HOST: sse-server SELF_HOSTED: 1 - IDENTITY_SERVER_URL: ${AUTH_SERVER_PUBLIC_URL} - NOTESNOOK_APP_HOST: ${NOTESNOOK_APP_PUBLIC_URL} + IDENTITY_SERVER_URL: https://notesnook.vhaudiquet.fr/identity + NOTESNOOK_APP_HOST: https://app.notesnook.com MONGODB_CONNECTION_STRING: mongodb://notesnookdb:27017/identity?replSet=rs0 MONGODB_DATABASE_NAME: identity labels: @@ -177,8 +177,8 @@ services: SSE_SERVER_PORT: 7264 SSE_SERVER_HOST: sse-server SELF_HOSTED: 1 - IDENTITY_SERVER_URL: ${AUTH_SERVER_PUBLIC_URL} - NOTESNOOK_APP_HOST: ${NOTESNOOK_APP_PUBLIC_URL} + IDENTITY_SERVER_URL: https://notesnook.vhaudiquet.fr/identity + NOTESNOOK_APP_HOST: https://app.notesnook.com MONGODB_CONNECTION_STRING: mongodb://notesnookdb:27017/?replSet=rs0 MONGODB_DATABASE_NAME: notesnook S3_INTERNAL_SERVICE_URL: "http://notesnook-s3:9000" @@ -231,8 +231,8 @@ services: SSE_SERVER_PORT: 7264 SSE_SERVER_HOST: sse-server SELF_HOSTED: 1 - IDENTITY_SERVER_URL: ${AUTH_SERVER_PUBLIC_URL} - NOTESNOOK_APP_HOST: ${NOTESNOOK_APP_PUBLIC_URL} + IDENTITY_SERVER_URL: https://notesnook.vhaudiquet.fr/identity + NOTESNOOK_APP_HOST: https://app.notesnook.com monograph-server: image: streetwriters/monograph:latest @@ -258,10 +258,10 @@ services: SSE_SERVER_PORT: 7264 SSE_SERVER_HOST: sse-server SELF_HOSTED: 1 - IDENTITY_SERVER_URL: ${AUTH_SERVER_PUBLIC_URL} - NOTESNOOK_APP_HOST: ${NOTESNOOK_APP_PUBLIC_URL} + IDENTITY_SERVER_URL: https://notesnook.vhaudiquet.fr/identity + NOTESNOOK_APP_HOST: https://app.notesnook.com API_HOST: http://notesnook-server:5264 - PUBLIC_URL: ${MONOGRAPH_PUBLIC_URL} + PUBLIC_URL: https://notesnook.vhaudiquet.fr/monograph labels: - "traefik.enable=true" - "traefik.http.routers.monograph-server.rule=Host(`notesnook.vhaudiquet.fr`) && PathPrefix(`/monograph`)"