File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -470,26 +470,27 @@ docker-push-magpie: docker-build-magpie ## push only built docker image for Mag
470
470
.PHONY : docker-push
471
471
docker-push : docker-push-magpie docker-push-adapter # # push built docker images for Magpie application and MagpieAdapter for Twitcher
472
472
473
+ DOCKER_COMPOSE_CMD ?= docker compose
473
474
DOCKER_TEST_COMPOSES := -f "$(APP_ROOT ) /ci/docker-compose.smoke-test.yml"
474
475
.PHONY : docker-test-only
475
476
docker-test-only : # # execute smoke test of the built image for Magpie application (validate that it boots)
476
477
@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
478
479
sleep 5
479
480
curl localhost:2001 | grep " Magpie Administration"
480
- docker-compose $(DOCKER_TEST_COMPOSES ) stop
481
+ $( DOCKER_COMPOSE_CMD ) $(DOCKER_TEST_COMPOSES ) stop
481
482
482
483
.PHONY : docker-test
483
484
docker-test : docker-build-magpie docker-test-only # # execute smoke test of the built image for Magpie application (validate that it boots)
484
485
485
486
.PHONY : docker-test-stop
486
487
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
488
489
489
490
.PHONY : docker-clean
490
491
docker-clean : # # remove any leftover images from docker target operations
491
492
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
493
494
494
495
# # --- Static code check targets ---
495
496
You can’t perform that action at this time.
0 commit comments