From 1e8fcfea673782d2cbaa9ca2671cde2028955c04 Mon Sep 17 00:00:00 2001 From: valitovgaziz Date: Tue, 21 Oct 2025 22:31:40 +0500 Subject: [PATCH] modified: serv_nginx/Makefile add docker logs commad --- serv_nginx/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serv_nginx/Makefile b/serv_nginx/Makefile index e96bb48..a16def5 100644 --- a/serv_nginx/Makefile +++ b/serv_nginx/Makefile @@ -40,7 +40,10 @@ build_nginx: start_nginx: docker compose up nginx -d -nginx: git stop_nginx build_nginx start_nginx +logs_nginx: + docker logs nginx -f + +nginx: git stop_nginx build_nginx start_nginx logs_nginx stop: docker compose down