From 4bd82cb2d5c156a0ef6d55912d74780245cca323 Mon Sep 17 00:00:00 2001 From: valitovgaziz Date: Mon, 17 Nov 2025 21:54:12 +0500 Subject: [PATCH] modified: main_dc/Makefile add api commands for Makefile --- main_dc/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/main_dc/Makefile b/main_dc/Makefile index a6e941f..caa6abd 100644 --- a/main_dc/Makefile +++ b/main_dc/Makefile @@ -134,3 +134,14 @@ certbot: stop_cerbot git build_certbot start_certbot wn wn: watch -n 2 'docker ps' + +stop_api: + docker compose down api + +build_api: + docker compose build api --no-cache + +start_api: + docker compose up api -d + +api: stop_api git build_api start_api wn