From 4ea86476a0e49e578429b18fcd316e33409f941b Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Wed, 20 May 2026 11:05:07 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(compose)=20set=20lasuite=20network?= =?UTF-8?q?=20as=20external?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The docker network lasuite is created in the makefile using the command `docker network create lasuite-network`. When a network is created with this command it can not be used by docker compose if this one is not set as external. We must use `external: true` in the compose file to fix this issue.` --- Makefile | 1 + compose.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 20cf1407b5..e529312244 100644 --- a/Makefile +++ b/Makefile @@ -85,6 +85,7 @@ generate-secret-keys: ## generate secret keys to be stored in common.local .PHONY: generate-secret-keys pre-bootstrap: \ + create-docker-network \ data/media \ data/static \ create-env-local-files \ diff --git a/compose.yml b/compose.yml index ed42f75b2f..7821beb117 100644 --- a/compose.yml +++ b/compose.yml @@ -260,3 +260,4 @@ networks: lasuite: name: lasuite-network driver: bridge + external: true