From e4cfd41874d7f303441c14d8a18fb911c7850c7e Mon Sep 17 00:00:00 2001 From: Martin Jurk Date: Fri, 21 Nov 2025 10:26:28 +0100 Subject: [PATCH] explorer error host fix --- itcc/modules/lens-compose.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/itcc/modules/lens-compose.yml b/itcc/modules/lens-compose.yml index 85fffab..e89dd9f 100644 --- a/itcc/modules/lens-compose.yml +++ b/itcc/modules/lens-compose.yml @@ -1,11 +1,15 @@ version: "3.7" services: landing: - container_name: lens_federated-search + container_name: lens_itcc_explorer image: ghcr.io/samply/itcc-explorer:pr-1 + environment: + HOST: "0.0.0.0" + BIND_ADDR: "0.0.0.0:3000" + PUBLIC_ENVIRONMENT: ${PUBLIC_ENVIRONMENT} labels: + - "traefik.http.routers.lens.rule=Host(`${HOST}`)" - "traefik.enable=true" - - "traefik.http.routers.landing.rule=PathPrefix(`/`)" - "traefik.http.services.landing.loadbalancer.server.port=3000" - "traefik.http.routers.landing.tls=true"