litellm

Форк
0
/
docker-compose.yml 
16 строк · 707.0 Байт
1
version: "3.9"
2
services:
3
  litellm:
4
    build:
5
      context: .
6
      args:
7
        target: runtime
8
    image: ghcr.io/berriai/litellm:main-latest
9
    ports:
10
      - "4000:4000" # Map the container port to the host, change the host port if necessary
11
    volumes:
12
      - ./litellm-config.yaml:/app/config.yaml # Mount the local configuration file
13
    # You can change the port or number of workers as per your requirements or pass any new supported CLI augument. Make sure the port passed here matches with the container port defined above in `ports` value
14
    command: [ "--config", "/app/config.yaml", "--port", "4000", "--num_workers", "8" ]
15

16
# ...rest of your docker-compose config if any

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.