mirror of
https://github.com/mudler/LocalAI.git
synced 2025-02-21 09:41:45 +00:00
15 lines
270 B
YAML
15 lines
270 B
YAML
version: '3.6'
|
|
|
|
services:
|
|
api:
|
|
image: quay.io/go-skynet/llama-cli:latest
|
|
build: .
|
|
volumes:
|
|
- ./models:/models
|
|
ports:
|
|
- 8080:8080
|
|
environment:
|
|
- MODELS_PATH=/models
|
|
- CONTEXT_SIZE=700
|
|
- THREADS=$THREADS
|
|
command: api |