diff options
Diffstat (limited to '{{cookiecutter.project_name}}')
-rw-r--r-- | {{cookiecutter.project_name}}/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/{{cookiecutter.project_name}}/Makefile b/{{cookiecutter.project_name}}/Makefile index 804034d..9ce194c 100644 --- a/{{cookiecutter.project_name}}/Makefile +++ b/{{cookiecutter.project_name}}/Makefile @@ -13,7 +13,7 @@ down: ## Stop the container docker-compose -p {{cookiecutter.project_name}} stop enter: ## Enter the running container - docker-compose -p {{cookiecutter.project_name}} exec /bin/bash backend + docker-compose -p {{cookiecutter.project_name}} exec backend /bin/bash clean: down ## Remove stoped containers docker-compose -p {{cookiecutter.project_name}} rm |