From ddb5269460f73c93f188e76b2f189d48b15033b7 Mon Sep 17 00:00:00 2001 From: hiento09 <136591877+hiento09@users.noreply.github.com> Date: Fri, 25 Oct 2024 14:36:54 +0700 Subject: [PATCH] chore: update docker readme --- docker/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/README.md b/docker/README.md index 73efe8c08..bdc917013 100644 --- a/docker/README.md +++ b/docker/README.md @@ -11,15 +11,15 @@ This guide will help you set up and run Cortex using Docker. ```bash git clone https://github.com/janhq/cortex.cpp.git - cd cortex.cpp/docker + cd cortex.cpp ``` 2. Build the Docker image ```bash # Default always uses the latest cortex.cpp and cortex.llamacpp - docker build -t cortex . + docker build -t cortex -f docker/Dockerfile . # Use specific version of cortex.cpp and cortex.llamacpp - docker build --build-arg CORTEX_LLAMACPP_VERSION=0.1.34 -t cortex . + docker build --build-arg CORTEX_LLAMACPP_VERSION=0.1.34 -t cortex -f docker/Dockerfile . ``` 3. Run the Docker container @@ -45,4 +45,4 @@ This guide will help you set up and run Cortex using Docker. ```bash docker exec -it cortex bash cortex --help - ``` \ No newline at end of file + ```