From e459412d25d6e97eed26330159d486b9cbb72edd Mon Sep 17 00:00:00 2001 From: devinleighsmith Date: Mon, 10 Jun 2024 10:41:26 -0700 Subject: [PATCH] updates to make commands based on dockerfile setup. --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index e51a844a4c..6663367b27 100644 --- a/Makefile +++ b/Makefile @@ -217,7 +217,11 @@ clean: ## Removes all local containers, images, volumes, etc @docker volume rm -f psp-api-db-data restart-mayan: - @docker-compose --profile mayan up --build -d + @docker-compose --profile mayan up --build --force-recreate -d + +mayan-up: ## Calls the docker compose up for the mayan images + @echo "$(P) Create or start mayan-edms system" + @docker-compose --profile mayan up -d logs: ## Shows logs for running containers (n=service name) @docker-compose logs -f $(n) @@ -311,10 +315,6 @@ env: ## Generate env files @echo "$(P) Generate/Regenerate env files required for application (generated passwords only match if database .env file does not already exist)" @./tools/cicd/scripts/gen-env-files.sh; -mayan-up: ## Calls the docker compose up for the mayan images - @echo "$(P) Create or start mayan-edms system" - @cd tools/mayan-edms; docker-compose --profile all up -d - generate-tsapi: ## Generates the pims API typescript files @echo "$(P) Generating pims api Ts files..." @cd tools/TsModelGenerator; dotnet build; dotnet run;