From 5349702a271a88c2bf5d37bc043c28e3976fa1df Mon Sep 17 00:00:00 2001 From: Connor Hack Date: Wed, 1 Oct 2025 14:48:54 -0400 Subject: [PATCH] Fix Dell distro documentation code snippets --- docs/docs/distributions/self_hosted_distro/dell.md | 4 ++-- llama_stack/distributions/dell/doc_template.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/distributions/self_hosted_distro/dell.md b/docs/docs/distributions/self_hosted_distro/dell.md index 68e7b6f58..52d40cf9d 100644 --- a/docs/docs/distributions/self_hosted_distro/dell.md +++ b/docs/docs/distributions/self_hosted_distro/dell.md @@ -102,7 +102,7 @@ You can start a chroma-db easily using docker. # This is where the indices are persisted mkdir -p $HOME/chromadb -podman run --rm -it \ +docker run --rm -it \ --network host \ --name chromadb \ -v $HOME/chromadb:/chroma/chroma \ @@ -127,7 +127,7 @@ docker run -it \ -p $LLAMA_STACK_PORT:$LLAMA_STACK_PORT \ -v $HOME/.llama:/root/.llama \ # NOTE: mount the llama-stack / llama-model directories if testing local changes else not needed - -v /home/hjshah/git/llama-stack:/app/llama-stack-source -v /home/hjshah/git/llama-models:/app/llama-models-source \ + -v $HOME/git/llama-stack:/app/llama-stack-source -v $HOME/git/llama-models:/app/llama-models-source \ # localhost/distribution-dell:dev if building / testing locally llamastack/distribution-dell\ --port $LLAMA_STACK_PORT \ diff --git a/llama_stack/distributions/dell/doc_template.md b/llama_stack/distributions/dell/doc_template.md index 34b87c907..fcec3ea14 100644 --- a/llama_stack/distributions/dell/doc_template.md +++ b/llama_stack/distributions/dell/doc_template.md @@ -115,7 +115,7 @@ docker run -it \ -p $LLAMA_STACK_PORT:$LLAMA_STACK_PORT \ -v $HOME/.llama:/root/.llama \ # NOTE: mount the llama-stack directory if testing local changes else not needed - -v /home/hjshah/git/llama-stack:/app/llama-stack-source \ + -v $HOME/git/llama-stack:/app/llama-stack-source \ # localhost/distribution-dell:dev if building / testing locally llamastack/distribution-{{ name }}\ --port $LLAMA_STACK_PORT \