-
I noticed that meilisearch v1.8 is available. However, that release does contain some breaking changes. I typically consult LibreChat's Is the official recommendation to follow the exact version used in the LibreChat compose file? Or is it always safe to upgrade? I just want to make sure I'm following recommended upgrade practices, since librechat contains a fairly sophisticated service stack. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can safely update. We're using 1.8 on the public demo and it works fine. The only thing is that you need to delete the 1.7.x index and re-index after updating with 1.8 ( I'd recommend mapping another folder for the 1.8 index) You can add this to your version: '3.4'
services:
# Your existing override file content....
meilisearch:
image: getmeili/meilisearch:v1.8
volumes:
- ./meili_data_v1.8:/meili_data |
Beta Was this translation helpful? Give feedback.
You can safely update. We're using 1.8 on the public demo and it works fine. The only thing is that you need to delete the 1.7.x index and re-index after updating with 1.8 ( I'd recommend mapping another folder for the 1.8 index)
You can add this to your
docker-compose.override.yml
file to try it out yourself: