You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-06-14 23:55:02 +02:00
13 lines
318 B
YAML
13 lines
318 B
YAML
![]() |
services:
|
||
|
litellm:
|
||
|
image: ghcr.io/berriai/litellm:main-stable
|
||
|
command: --config /app/config.yaml --detailed_debug
|
||
|
ports:
|
||
|
- "4000:4000"
|
||
|
volumes:
|
||
|
- ./data/config.yaml:/app/config.yaml
|
||
|
environment:
|
||
|
- OPENAI_API_KEY=sk-xxxxxx
|
||
|
- ANTHROPIC_API_KEY=sk-xxxxxx
|
||
|
restart: unless-stopped
|