diff --git a/serv_nginx/Makefile b/serv_nginx/Makefile index 105e6d5..e96bb48 100644 --- a/serv_nginx/Makefile +++ b/serv_nginx/Makefile @@ -54,12 +54,17 @@ start: re_all: stop git build start stop_kk: - docker compose down keycloak keycloak-db + docker compose down keycloak + +build_kk: + docker compose build keycloak --no-cache start_kk: - docker compose up keycloak keycloak-db -d + docker compose up keycloak -d + +logs_kk: + docker logs keycloak -f re_kk: git stop_kk start_kk -keycloak: git - docker compose down keycloak && docker compose build keycloak --no-cache && docker compose up keycloak -d \ No newline at end of file +keycloak: git stop_kk build_kk start_kk logs_kk \ No newline at end of file