Skip to content

Commit 426dc54

Browse files
ConnorHackChackFb
andauthored
docs: Fix Dell distro documentation code snippets (#3640)
# What does this PR do? * Updates code snippets for Dell distribution, fixing specific user home directory in code (replacing with $HOME) and updates docker instructions to use `docker` instead of `podman`. ## Test Plan N.A. Co-authored-by: Connor Hack <[email protected]>
1 parent 382eb25 commit 426dc54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/docs/distributions/self_hosted_distro/dell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ You can start a chroma-db easily using docker.
102102
# This is where the indices are persisted
103103
mkdir -p $HOME/chromadb
104104

105-
podman run --rm -it \
105+
docker run --rm -it \
106106
--network host \
107107
--name chromadb \
108108
-v $HOME/chromadb:/chroma/chroma \
@@ -127,7 +127,7 @@ docker run -it \
127127
-p $LLAMA_STACK_PORT:$LLAMA_STACK_PORT \
128128
-v $HOME/.llama:/root/.llama \
129129
# NOTE: mount the llama-stack / llama-model directories if testing local changes else not needed
130-
-v /home/hjshah/git/llama-stack:/app/llama-stack-source -v /home/hjshah/git/llama-models:/app/llama-models-source \
130+
-v $HOME/git/llama-stack:/app/llama-stack-source -v $HOME/git/llama-models:/app/llama-models-source \
131131
# localhost/distribution-dell:dev if building / testing locally
132132
llamastack/distribution-dell\
133133
--port $LLAMA_STACK_PORT \

llama_stack/distributions/dell/doc_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ docker run -it \
115115
-p $LLAMA_STACK_PORT:$LLAMA_STACK_PORT \
116116
-v $HOME/.llama:/root/.llama \
117117
# NOTE: mount the llama-stack directory if testing local changes else not needed
118-
-v /home/hjshah/git/llama-stack:/app/llama-stack-source \
118+
-v $HOME/git/llama-stack:/app/llama-stack-source \
119119
# localhost/distribution-dell:dev if building / testing locally
120120
llamastack/distribution-{{ name }}\
121121
--port $LLAMA_STACK_PORT \

0 commit comments

Comments
 (0)