From d62ea7f3df166fa2d471945a3a2fbd73505692e3 Mon Sep 17 00:00:00 2001 From: Kelin Date: Wed, 28 Jan 2026 03:24:26 -0500 Subject: [PATCH] Update core docker-compose.yml to match working local configuration - Change sablier volumes to use ./shared-ca:/certs:ro (matches script generation) - Fix x-dockge URLs to use http:// for local access and correct variable syntax - Ensure consistency with local working setup --- docker-compose/core/docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose/core/docker-compose.yml b/docker-compose/core/docker-compose.yml index 505fe20..a930ed0 100644 --- a/docker-compose/core/docker-compose.yml +++ b/docker-compose/core/docker-compose.yml @@ -119,7 +119,7 @@ services: - DOCKER_TLS_VERIFY=1 - DOCKER_CERT_PATH=/certs volumes: - - ./sablier-certs:/certs:ro + - ./shared-ca:/certs:ro ports: - 10000:10000 labels: @@ -134,6 +134,6 @@ networks: x-dockge: urls: - https://auth.${DOMAIN} - - https://${SERVER_IP}:9091 + - http://${SERVER_IP}:9091 - https://traefik.${DOMAIN} - - https://${SERVER_IP}:8080 \ No newline at end of file + - http://${SERVER_IP}:8080 \ No newline at end of file