Skip to content

Commit 9d115a2

Browse files
committed
fix makefile to use 'docker compose' matching CLI available on GitHub Actions
1 parent dc0a9a9 commit 9d115a2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Makefile

+5-4
Original file line numberDiff line numberDiff line change
@@ -470,26 +470,27 @@ docker-push-magpie: docker-build-magpie ## push only built docker image for Mag
470470
.PHONY: docker-push
471471
docker-push: docker-push-magpie docker-push-adapter ## push built docker images for Magpie application and MagpieAdapter for Twitcher
472472

473+
DOCKER_COMPOSE_CMD ?= docker compose
473474
DOCKER_TEST_COMPOSES := -f "$(APP_ROOT)/ci/docker-compose.smoke-test.yml"
474475
.PHONY: docker-test-only
475476
docker-test-only: ## execute smoke test of the built image for Magpie application (validate that it boots)
476477
@echo "Smoke test of built application docker image"
477-
docker-compose $(DOCKER_TEST_COMPOSES) up -d
478+
$(DOCKER_COMPOSE_CMD) $(DOCKER_TEST_COMPOSES) up -d
478479
sleep 5
479480
curl localhost:2001 | grep "Magpie Administration"
480-
docker-compose $(DOCKER_TEST_COMPOSES) stop
481+
$(DOCKER_COMPOSE_CMD) $(DOCKER_TEST_COMPOSES) stop
481482

482483
.PHONY: docker-test
483484
docker-test: docker-build-magpie docker-test-only ## execute smoke test of the built image for Magpie application (validate that it boots)
484485

485486
.PHONY: docker-test-stop
486487
docker-test-stop: ## explicitly stop any running instance that could remain from 'docker-test' target
487-
docker-compose $(DOCKER_TEST_COMPOSES) stop
488+
$(DOCKER_COMPOSE_CMD) $(DOCKER_TEST_COMPOSES) stop
488489

489490
.PHONY: docker-clean
490491
docker-clean: ## remove any leftover images from docker target operations
491492
docker rmi $(docker images -f "reference=$(MAGPIE_DOCKER_REPO)" -q)
492-
docker-compose $(DOCKER_TEST_COMPOSES) down
493+
$(DOCKER_COMPOSE_CMD) $(DOCKER_TEST_COMPOSES) down
493494

494495
## --- Static code check targets ---
495496

0 commit comments

Comments
 (0)