Skip to content

Commit fc68b71

Browse files
authored
🐛(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.`
1 parent 0bfc697 commit fc68b71

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ generate-secret-keys: ## generate secret keys to be stored in common.local
8585
.PHONY: generate-secret-keys
8686

8787
pre-bootstrap: \
88+
create-docker-network \
8889
data/media \
8990
data/static \
9091
create-env-local-files \

compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,3 +260,4 @@ networks:
260260
lasuite:
261261
name: lasuite-network
262262
driver: bridge
263+
external: true

0 commit comments

Comments
 (0)