Skip to content

llama.cpp server + small language model in Docker container

License

Notifications You must be signed in to change notification settings

kth8/llama-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

llama.cpp server and small language model bundled together inside a Docker image for easy deployment similar to a llamafile. Uses CPU for inference. Requires CPU with AVX2 support from Intel Haswell/AMD Excavator or later generations. Override server settings with environment variables.

docker run -d --name llama1b --init -p 8001:8080/tcp ghcr.io/kth8/llama-server:llama-3.2-1b-instruct

Verify if the server is running by going to http://127.0.0.1:8001 in your web browser or using the terminal:

curl http://127.0.0.1:8001/v1/chat/completions -H "Content-Type: application/json" -d '{"messages":[{"role":"user","content":"Hello"}]}'

Check if your CPU supports AVX2 on Linux:

grep -o 'avx2' /proc/cpuinfo

Available tags:

ghcr.io/kth8/llama-server:llama-3.2-1b-instruct

ghcr.io/kth8/llama-server:llama-3.2-3b-instruct

ghcr.io/kth8/llama-server:qwen2.5-0.5b-instruct

ghcr.io/kth8/llama-server:qwen2.5-1.5b-instruct

ghcr.io/kth8/llama-server:qwen2.5-3b-instruct

ghcr.io/kth8/llama-server:nemotron-mini-4b-instruct

ghcr.io/kth8/llama-server:smollm2-360m-instruct

ghcr.io/kth8/llama-server:smollm2-135m-instruct

ghcr.io/kth8/llama-server:smollm2-1.7b-instruct

ghcr.io/kth8/llama-server:amd-olmo-1b-sft-dpo

ghcr.io/kth8/llama-server:qwen2.5-coder-0.5b-instruct

ghcr.io/kth8/llama-server:qwen2.5.1-coder-1.5b-instruct

ghcr.io/kth8/llama-server:qwen2.5-coder-3b-instruct

ghcr.io/kth8/llama-server:hermes-3-llama-3.2-3b

ghcr.io/kth8/llama-server:falcon3-1b-instruct

ghcr.io/kth8/llama-server:granite-3.1-1b-a400m-instruct

ghcr.io/kth8/llama-server:granite-3.1-2b-instruct

ghcr.io/kth8/llama-server:granite-3.1-3b-a800m-instruct

All model GGUF files provided by bartowski.

About

llama.cpp server + small language model in Docker container

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages