We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a207430 commit 04037f6Copy full SHA for 04037f6
services/metabase/Makefile
@@ -1,10 +1,13 @@
1
REPO_BASE_DIR := $(shell git rev-parse --show-toplevel)
2
3
-include ${REPO_BASE_DIR}/scripts/common.Makefile
4
include ${REPO_BASE_DIR}/scripts/common-services.Makefile
+# common-services.Makefile should be included first as common.Makefile
5
+#relies on STACK_NAME var which is defined in common-services.Makefile
6
+include ${REPO_BASE_DIR}/scripts/common.Makefile
7
8
.PHONY: up
-up: ${TEMP_COMPOSE} ## Deploys metabase stack
9
+up: ${TEMP_COMPOSE} prune-docker-stack-configs ## Deploys metabase stack
10
+ @docker stack deploy --with-registry-auth --prune --compose-file ${TEMP_COMPOSE} ${STACK_NAME}
11
12
up-aws: up
13
0 commit comments