mirror of
https://github.com/open-webui/llama-cpp-runner
synced 2025-05-12 07:40:36 +00:00
15 lines
321 B
YAML
15 lines
321 B
YAML
services:
|
|
llama-cpp-runner:
|
|
build: .
|
|
container_name: owui-llama-cpp-runner
|
|
ports:
|
|
- "3636:3636"
|
|
volumes:
|
|
- ./models:/models
|
|
- ./cache:/cache
|
|
environment:
|
|
- MODELS_DIR=/models
|
|
- CACHE_DIR=/cache
|
|
- VERBOSE=true
|
|
- TIMEOUT_MINUTES=30
|
|
restart: unless-stopped |