From 298d6a38fd210937a906a80bb2f40e2094c53788 Mon Sep 17 00:00:00 2001 From: svupper <56261963+svupper@users.noreply.github.com> Date: Thu, 11 May 2023 11:03:51 +0200 Subject: [PATCH] Update README.md Fixed a typo in the mounting point when using the image in full mode --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 045f99534..31b7c5b3e 100644 --- a/README.md +++ b/README.md @@ -517,13 +517,13 @@ The easiest way to download the models, convert them to ggml and optimize them i Replace `/path/to/models` below with the actual path where you downloaded the models. ```bash -docker run -v /path/to/models:/models ghcr.io/ggerganov/llama.cpp:full --all-in-one "/models/" 7B +docker run -v /path/to/models:/app/models ghcr.io/ggerganov/llama.cpp:full --all-in-one "/models/" 7B ``` On completion, you are ready to play! ```bash -docker run -v /path/to/models:/models ghcr.io/ggerganov/llama.cpp:full --run -m /models/7B/ggml-model-q4_0.bin -p "Building a website can be done in 10 simple steps:" -n 512 +docker run -v /path/to/models:/app/models ghcr.io/ggerganov/llama.cpp:full --run -m /models/7B/ggml-model-q4_0.bin -p "Building a website can be done in 10 simple steps:" -n 512 ``` or with a light image: