diff --git a/Makefile b/Makefile index b3f2a12..4926376 100644 --- a/Makefile +++ b/Makefile @@ -20,11 +20,13 @@ $(DIR_BACK)/.env: ${DIR_BACK}/.env.example clean: ${RM} ${DIR_BACK}/.env # Delete the db volume - sudo ${RM} -r dev-db || true cd ${DIR_SQL} && make clean ${DOCKER_COMPOSE} -f docker-compose.dev.yml down --rmi local -v --remove-orphans || true + sudo ${RM} -r dev-db || true clean_prod: clean + cd ${DIR_SQL} && make clean ${DOCKER_COMPOSE} -f docker-compose.prod.yml down --rmi local -v --remove-orphans || true + sudo ${RM} -r database || true .PHONY: clean all prepare_dev build clean_prod