From 13698884f7d99c35cafc196315d301dbdd4cfc62 Mon Sep 17 00:00:00 2001 From: furyhawk Date: Sun, 15 Jun 2025 09:11:35 +0800 Subject: [PATCH] fix: Update container check from Docker to Podman in LlamaCPP script --- scripts/pull-deepseek-llamacpp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pull-deepseek-llamacpp.sh b/scripts/pull-deepseek-llamacpp.sh index faab3e4..5285885 100755 --- a/scripts/pull-deepseek-llamacpp.sh +++ b/scripts/pull-deepseek-llamacpp.sh @@ -165,7 +165,7 @@ verify_model() { # Check if LlamaCPP container is running check_llamacpp() { log_info "Checking if LlamaCPP container is running..." - if docker ps | grep -q "${CONTAINER_NAME}"; then + if podman ps | grep -q "${CONTAINER_NAME}"; then log_info "LlamaCPP container is running" # Test if server is responding