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