fix _get_docker_run_command_stable_release

This commit is contained in:
Ishaan Jaff 2025-02-25 19:11:30 -08:00
parent f9cee4c46b
commit bca6e37c24

View file

@ -61,7 +61,8 @@ def _get_docker_run_command_stable_release(release_version):
docker run \\ docker run \\
-e STORE_MODEL_IN_DB=True \\ -e STORE_MODEL_IN_DB=True \\
-p 4000:4000 \\ -p 4000:4000 \\
ghcr.io/berriai/litellm_stable_release_branch-{release_version} ghcr.io/berriai/litellm:litellm_stable_release_branch-{release_version}
```
""" """
@ -75,6 +76,7 @@ def _get_docker_run_command(release_version):
-e STORE_MODEL_IN_DB=True \\ -e STORE_MODEL_IN_DB=True \\
-p 4000:4000 \\ -p 4000:4000 \\
ghcr.io/berriai/litellm:main-{release_version} ghcr.io/berriai/litellm:main-{release_version}
```
""" """