From c1cc9d0037f6da244218eea7bd9d10e532da8d9b Mon Sep 17 00:00:00 2001 From: tatyabicchu Date: Tue, 17 Dec 2024 15:04:12 +0530 Subject: [PATCH] Fixes #2657 Stops and removes the containers and their volumes. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 12d25fc83b..46e7af4084 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,9 @@ up: down: docker compose -f docker-compose.yaml -f $(docker_config_file) down +teardown: + docker compose -f docker-compose.yaml -f $(docker_config_file) down -v + load-dummy-data: docker compose exec backend bash -c "python manage.py load_dummy_data"