Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: test_all: docker-compose: command not found #58

Merged
merged 2 commits into from
Sep 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile_v1
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ endif

.phony: demo demo_all demo_Insta demo_EJBCA demo_CloudCA
demo: demo_Insta
demo_all: demo demo_EJBCA demo_CloudCA
demo_all: demo demo_EJBCA
demo_Insta: get_Insta_crls
$(MAKE) -f Makefile_v1 run_demo BIN_DIR="$(BIN_DIR)" CA_SECTION="Insta" SLEEP="sleep 1"
# for Insta, sleep 1 helps avoid ERROR: server response error : Code=503,Reason=Service Unavailable
Expand Down Expand Up @@ -484,7 +484,7 @@ EJBCA_CRL_INTERVAL=5
start_EJBCA: $(EJBCA_DOCKER_DIR)
ifeq ($(EJBCA_CONFIG),)
@echo "starting EJBCA"
@cd $(EJBCA_DOCKER_DIR) && docker-compose -f docker-compose.yml up -d
@cd $(EJBCA_DOCKER_DIR) && docker compose -f docker-compose.yml up -d
@echo "probing until EJBCA docker is ready - usually takes some 70 seconds..."
@wget -q --tries=100 -nv http://${EJBCA_HOST}:${EJBCA_HTTPS_PORT}/ejbca -O /dev/null
@echo "EJBCA docker is ready now to accept requests."
Expand All @@ -501,7 +501,7 @@ endif
stop_EJBCA: $(EJBCA_DOCKER_DIR)
ifeq ($(EJBCA_CONFIG),)
@echo "stopping EJBCA"
@cd $(EJBCA_DOCKER_DIR) && docker-compose -f docker-compose.yml down
@cd $(EJBCA_DOCKER_DIR) && docker compose -f docker-compose.yml down
endif

.phony: start_Simple stop_Simple
Expand Down
Loading