forked from phoenix/litellm-mirror
16 lines
No EOL
707 B
YAML
16 lines
No EOL
707 B
YAML
version: "3.9"
|
|
services:
|
|
litellm:
|
|
build:
|
|
context: .
|
|
args:
|
|
target: runtime
|
|
image: ghcr.io/berriai/litellm:main-latest
|
|
ports:
|
|
- "4000:4000" # Map the container port to the host, change the host port if necessary
|
|
volumes:
|
|
- ./litellm-config.yaml:/app/config.yaml # Mount the local configuration file
|
|
# 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
|
|
command: [ "--config", "/app/config.yaml", "--port", "4000", "--num_workers", "8" ]
|
|
|
|
# ...rest of your docker-compose config if any |