Skip to content

Commit

Permalink
remove unsupported docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
rajeev-0 committed Sep 2, 2024
1 parent 3d50e95 commit bd6ef07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile_v1
Original file line number Diff line number Diff line change
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

0 comments on commit bd6ef07

Please sign in to comment.