From cbd61dccd4435b3a30b9624d58fb21d9a58d4551 Mon Sep 17 00:00:00 2001 From: Gavin Mogan Date: Wed, 4 Jun 2025 23:12:16 -0700 Subject: [PATCH] fix(install.sh): vulkan docker tag (#5589) vulkan docker tag is not prefixed with gpu ``` regctl tag ls localai/localai | grep 2.29 | grep vulkan v2.29.0-vulkan ``` Signed-off-by: Gavin Mogan --- docs/static/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/static/install.sh b/docs/static/install.sh index 4ee607e0..169868e5 100755 --- a/docs/static/install.sh +++ b/docs/static/install.sh @@ -663,7 +663,7 @@ install_docker() { IMAGE_TAG= if [ "$USE_VULKAN" = true ]; then - IMAGE_TAG=${LOCALAI_VERSION}-gpu-vulkan + IMAGE_TAG=${LOCALAI_VERSION}-vulkan info "Starting LocalAI Docker container..." $SUDO docker run -v local-ai-data:/build/models \