From 8e9403e1686d9acd397d2dfa970d9dddf35fa41a Mon Sep 17 00:00:00 2001 From: Steve Date: Tue, 3 May 2022 10:21:20 -0600 Subject: [PATCH] stop and down rename in makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5a4a4c5..1391906 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ build: ## Build the backend Docker image up: ## Bring the backend Docker container up docker-compose up -down: ## Stop the backend Docker container +stop: ## Stop the backend Docker container docker-compose stop ssh: ## Enter the running backend Docker container for the wagtail bakery site @@ -22,7 +22,7 @@ ssh-wagtail: ## Enter the running Docker container for the wagtail development e ssh-db: ## Open a PostgreSQL shell session docker-compose exec web python manage.py dbshell -clean: ## Stop and remove all Docker containers +down: ## Stop and remove all Docker containers docker-compose down migrations: ## Make migrations to the wagtail bakery site