modified: main_dc/Makefile

add api commands for Makefile
This commit is contained in:
2025-11-17 21:54:12 +05:00
parent cbd8051f03
commit 4bd82cb2d5
+11
View File
@@ -134,3 +134,14 @@ certbot: stop_cerbot git build_certbot start_certbot wn
wn: wn:
watch -n 2 'docker ps' 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