litellm-setting/docker-compose.yml

13 lines
316 B
YAML
Raw Permalink Normal View History

2026-02-25 09:34:20 +00:00
services:
litellm:
image: ghcr.io/berriai/litellm:main-latest
container_name: litellm-proxy
ports:
- "4000:4000"
volumes:
- ./litellm_config.yaml:/app/config.yaml
env_file:
- .env
command: [ "--config", "/app/config.yaml", "--detailed_debug" ]
restart: unless-stopped