From 7b371ad9c51e8ac426fe634a3106b7681c61a0d2 Mon Sep 17 00:00:00 2001 From: lza_menace Date: Mon, 5 Oct 2020 22:35:16 -0700 Subject: [PATCH] fix commands in makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4d739f1..f19b762 100644 --- a/Makefile +++ b/Makefile @@ -13,10 +13,10 @@ up-full: ## Build and run the required containers by compiling source docker-compose -f docker-compose.compile.yaml up -d down: ## Stop the containers - docker-compose -f docker-compose.nocompile.yaml up -d + docker-compose -f docker-compose.nocompile.yaml down down-full: ## Stop the containers - docker-compose -f docker-compose.compile.yaml up -d + docker-compose -f docker-compose.compile.yaml down logs: ## Get logs from the containers docker-compose -f docker-compose.nocompile.yaml logs -f