File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 11REPO_BASE_DIR := $(shell git rev-parse --show-toplevel)
22
3- include ${REPO_BASE_DIR}/scripts/common.Makefile
43include ${REPO_BASE_DIR}/scripts/common-services.Makefile
4+ # 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
57
68.PHONY : up
7- 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+
14+ up-master : up
15+
16+ up-dalco : up
17+
18+ up-local : up
19+
20+ up-public : up
821
922${TEMP_COMPOSE} : docker-compose.yml .env
1023 @${REPO_BASE_DIR} /scripts/docker-stack-config.bash -e .env $< > $@
You can’t perform that action at this time.
0 commit comments