From cea5880f9488c0ae9135fcdd1cff0a6c9176bff9 Mon Sep 17 00:00:00 2001 From: valitovgaziz Date: Tue, 21 Oct 2025 06:46:03 +0500 Subject: [PATCH] modified: serv_nginx/Makefile keycloak command full --- serv_nginx/Makefile | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) 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