mirror of
https://github.com/suitenumerique/docs.git
synced 2026-09-10 03:37:52 +02:00
🐛(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:
@@ -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 \
|
||||
|
||||
@@ -260,3 +260,4 @@ networks:
|
||||
lasuite:
|
||||
name: lasuite-network
|
||||
driver: bridge
|
||||
external: true
|
||||
|
||||
Reference in New Issue
Block a user