diff --git a/Makefile b/Makefile index 2c3e555..583c40f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: env up pull update init +.PHONY: env up pull update init down ifeq ($(shell test -e '.env' && echo -n yes), yes) include .env @@ -24,6 +24,10 @@ pull: up: docker compose up --force-recreate --remove-orphans -d +## Down docker containers +down: + docker compose down + ## Pull & up containers update: make pull up