From 4dc3322b0d558fd9ba306842ad99e2952c9575ae Mon Sep 17 00:00:00 2001 From: Samuel Paccoud - DINUM Date: Wed, 23 Jul 2025 05:49:57 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7(compose)=20configure=20external=20?= =?UTF-8?q?network=20for=20communication=20with=20search?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Search in Docs relies on an external project like "La Suite Find". We need to declare a common external network in order to connect to the search app and index our documents. --- compose.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/compose.yml b/compose.yml index a774f11e..a24a3974 100644 --- a/compose.yml +++ b/compose.yml @@ -72,6 +72,9 @@ services: - env.d/development/postgresql.local ports: - "8071:8000" + networks: + - default + - lasuite-net volumes: - ./src/backend:/app - ./data/static:/data/static @@ -217,3 +220,8 @@ services: kc_postgresql: condition: service_healthy restart: true + +networks: + lasuite-net: + name: lasuite-net + driver: bridge