🐛(compose) set lasuite network as external

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.`
This commit is contained in:
Manuel Raynaud
2026-05-21 08:38:49 +00:00
committed by GitHub
parent 0bfc697476
commit fc68b71656
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -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 \
+1
View File
@@ -260,3 +260,4 @@ networks:
lasuite:
name: lasuite-network
driver: bridge
external: true