From 261e1c637ea24786fa814aa4eb38c223afed4f4b Mon Sep 17 00:00:00 2001 From: YuryHrytsuk Date: Mon, 30 Jun 2025 14:16:03 +0200 Subject: [PATCH] Metabase: add makefile up targets CI calls up- makefile target. Without these target CI will fail * https://github.com/ITISFoundation/osparc-ops-environments/issues/1061 * https://github.com/ITISFoundation/osparc-ops-environments/pull/1093 --- services/metabase/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/services/metabase/Makefile b/services/metabase/Makefile index 60539799..b28cee9a 100644 --- a/services/metabase/Makefile +++ b/services/metabase/Makefile @@ -6,6 +6,16 @@ include ${REPO_BASE_DIR}/scripts/common-services.Makefile .PHONY: up up: ${TEMP_COMPOSE} ## Deploys metabase stack +up-aws: up + +up-master: up + +up-dalco: up + +up-local: up + +up-public: up + ${TEMP_COMPOSE}: docker-compose.yml .env @${REPO_BASE_DIR}/scripts/docker-stack-config.bash -e .env $< > $@