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