Help updating LibreChat #6208
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Updating Instructions (docker): # Linux command to Remove all existing images
docker images -a | grep "librechat" | awk '{print $3}' | xargs docker rmi
# Windows Powershell
docker images -a | findstr "librechat" | ForEach-Object { docker rmi $_.Split()[2] } Then follow the directions here: https://www.librechat.ai/docs/local/docker#update-librechat |
Beta Was this translation helpful? Give feedback.
-
I cannot for the life of me work out how to update LibreChat. I originally got it set up on 0.7.5 and now I'm trying to use Claude Sonnet 3.7 and obviously need to update to 0.7.7. Every attempt I make to update keeps me on 0.7.5 I'm on a slightly custom setup, where I modify the docker-compose file as a Portainer Stack (#3150) and apart from modifications to the volume locations and a few env.stack differences to cover my self-hosting/reverse proxy, it's all the same. I have tried to completely remove my docker images (as provided in the Linux command by @danny-avila ) and I'm pulling :latest or using the :v0.7.7 tag and yet it still tells me I'm on 0.7.5. From the current docker-compose I see that meilisearch is 1.12.3, but updating that causes only meilisearch issues with attempting to migrate data from 1.7.3 to 1.12.3 and regardless still doesn't affect the 0.7.5 version of the main API application. I've tried changing to each of the 4 different librechat containers (-dev, -dev-api, -api, and base) with no luck. Each time running the image remove command in between. The UI is definitely not cached, I tried not using my Cloudflare DNS cache to no change. I've even tried a fresh install (completely removing my existing config directories) and that just lead to other application errors (basically couldn't start the api container at all, I can get logs, but I'm going to try this process again with some changes to my compose file) |
Beta Was this translation helpful? Give feedback.
Updating Instructions (docker):
Then follow the directions here: https://www.librechat.ai/docs/local/docker#update-librechat