From 716b662e4a8a9d9e76e77e40abb2e74f97c8028d Mon Sep 17 00:00:00 2001 From: Teck Meng Date: Mon, 27 May 2024 20:26:07 +0800 Subject: [PATCH] Refactor docker-compose.yml to remove unnecessary network configurations --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 68e8a5f..dba4b8a 100644 --- a/makefile +++ b/makefile @@ -5,7 +5,7 @@ # Commands serve: down @echo "Serving the project..." - docker compose -f compose.yml up --build -d + docker compose -f compose.yml up -d down: pull @echo "Stopping the project..." docker compose -f compose.yml down --remove-orphans