Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -45,4 +45,4 @@ This guide will help you set up and run Cortex using Docker.
```bash
docker exec -it cortex bash
cortex --help
```
```