From 3741b92bbef533488a214337affc4b97b3039339 Mon Sep 17 00:00:00 2001 From: renator2 Date: Mon, 20 Jul 2026 11:54:29 -0300 Subject: [PATCH] =?UTF-8?q?#SVTH-575=20-=20comando=20para=20atualizar=20ap?= =?UTF-8?q?enas=20aplica=C3=A7=C3=B5es=20sem=20modificar=20a=20infra.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a79b9c9..ada0209 100644 --- a/Makefile +++ b/Makefile @@ -42,16 +42,18 @@ app: docker compose \ --project-name $(PROJECT_NAME) \ --env-file $(ENV_FILE) \ + --profile infra \ --profile app \ -f $(COMPOSE_FILE) \ - pull + pull $(APP_SERVICES) @echo "🚀 Subindo apenas APP ($(PROJECT_NAME))..." docker compose \ --project-name $(PROJECT_NAME) \ --env-file $(ENV_FILE) \ + --profile infra \ --profile app \ -f $(COMPOSE_FILE) \ - up -d --pull never --force-recreate + up -d --pull never --force-recreate $(APP_SERVICES) # =============================== # 🔥 Subir TUDO