Describe the issue:
I am using the quickstart setup here : Quickstart - OpenSearch Documentation
I want to use Conversational search feature, which is a part of 2.10 release. I would like to know how can I update the open search version on the docker-compose setup that I am using?
Remove the old version image of OpenSearch and OpenSearch-Dashboards, then recreate the containers by docker-compose up, it will download the latest version and deploy with it.
I am using the docker-compose from https://raw.githubusercontent.com/opensearch-project/documentation-website/2.11/assets/examples/docker-compose.yml
This does not spin up 2.11 Version.
@ugola How did you stop the containers? docker-compose stop will only stop containers and docker-compose start will bring them back.
If you’d like to replace the image, then you must run docker-compose down. This will delete containers and keep the volumes with data. Then running docker-compose up --build will pull new images and start containers with the new image version.