Files
Gan, Jimmy e11fd666d2
Deploy Dashboard (Dev) / Frontend Tests (push) Successful in 1m0s
Deploy Dashboard (Dev) / Backend Tests (push) Failing after 13m40s
Deploy Dashboard (Dev) / Deploy to Dev (push) Has been skipped
Deploy Dashboard (Dev) / Build Dev Image (push) Has been skipped
ci: trigger fresh run after Gitea restart
2026-06-07 16:07:38 +08:00

34 lines
700 B
YAML

services:
litellm:
image: ghcr.io/berriai/litellm:main-v1.16.19
container_name: litellm
restart: unless-stopped
labels:
- "com.centurylinklabs.watchtower.enable=false"
env_file:
- .env
environment:
- LITELLM_MASTER_KEY=anything
ports:
- "127.0.0.1:${LITELLM_PORT:-4005}:4005"
volumes:
- ./config:/config:ro
networks:
- nas-dashboard_internal
command:
- "--config"
- "/config/litellm.yaml"
- "--host"
- "0.0.0.0"
- "--port"
- "4005"
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
networks:
nas-dashboard_internal:
external: true