From c2499cb21b333ced3eac6f43f410d2102af0010e Mon Sep 17 00:00:00 2001 From: Damien Date: Tue, 1 Nov 2022 10:35:29 +0000 Subject: [PATCH] Add docker-compose extra flags param in Makefile (#446) * Add docker-compose extra flags param * rename to avoid confusion --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b73642ca0..f375bb42d 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ postgres: $(POSTGRES_EXTRA_PATH) docker-compose.rendered.yml: docker-compose.yml docker-compose.dev.yml - $(DOCKER_COMPOSE_ENV) $(DOCKER_COMPOSE) $(DOCKER_COMPOSE_FILES) -p $(STACK) config > $@ + $(DOCKER_COMPOSE_ENV) $(DOCKER_COMPOSE) $(DOCKER_COMPOSE_FILES) $(DOCKER_COMPOSE_CONFIG_FLAGS) -p $(STACK) config > $@ deploy: docker-compose.yml $(DOCKER_COMPOSE_ENV) docker stack deploy -c $< $(STACK)