OllamaProxy/docker-compose.yml

19 lines
544 B
YAML

version: '3'
services:
ollama-proxy:
build: .
container_name: ollama-proxy
ports:
- "11434:11434"
environment:
- OLLAMA_URL=${OLLAMA_URL:-http://localhost:11434}
- WAKE_URL=${WAKE_URL:-http://localhost:11434/api/generate}
- TIMEOUT_SECONDS=${TIMEOUT_SECONDS:-10}
- PORT=${PORT:-11434}
- WAKE_INTERVAL=${WAKE_INTERVAL:-10}
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:11434/health"]
interval: 30s
timeout: 10s
retries: 3