modified: serv_nginx/Makefile

make stop build start re_all commands added
This commit is contained in:
2025-10-21 03:52:24 +05:00
parent 1d58396888
commit a5c5b986e0
+11
View File
@@ -50,3 +50,14 @@ start_nginx:
docker compose up nginx -d docker compose up nginx -d
nginx: git stop_nginx build_nginx start_nginx nginx: git stop_nginx build_nginx start_nginx
stop:
docker compose down
build:
docker compose build --no-cache
start:
docker compose up -d
re_all: stop git build start