docker-compose.yaml 330 B

123456789101112131415
  1. services:
  2. litellm:
  3. build: .
  4. command: --config /app/config.yaml --detailed_debug
  5. ports:
  6. - 4000:4000
  7. restart: unless-stopped
  8. environment:
  9. - GEMINI_API_KEY
  10. - HTTPS_PROXY
  11. volumes:
  12. - ./litellm_config.yaml:/app/config.yaml
  13. # networks:
  14. # - ssrf_proxy_network
  15. # - default