From 2ed750537d37b38acd306fe6478cd8bf3307923d Mon Sep 17 00:00:00 2001 From: binaryDiv Date: Sat, 19 Oct 2019 02:20:59 +0200 Subject: [PATCH] add make target to show docker container logs --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index b29ca5e..e95c766 100644 --- a/Makefile +++ b/Makefile @@ -32,3 +32,7 @@ decrypt: # Deploy on production using docker-compose deploy: docker-compose -f $(DOCKER_COMPOSE_YML) up --build --detach + +# Show logs for running container +log-show: + docker-compose -f $(DOCKER_COMPOSE_YML) logs -f