mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-05-03 00:37:48 +08:00
fix(compose): use official opensearch image instead of hub.icert.top mirror (#13131)
### What problem does this PR solve? The Docker Compose configuration was using hub.icert.top as the registry for the OpenSearch image. That registry is not reachable in our environment, which causes podman pull and docker compose pull to fail with a connection refused error. As a result, the application cannot start because the OpenSearch image cannot be downloaded. This PR updates the image reference to use the official Docker Hub image (opensearchproject/opensearch:2.19.1) instead of the hub.icert.top mirror. After this change, the image pulls successfully and the services start as expected.  ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) - [ ] New Feature (non-breaking change which adds functionality) - [ ] Documentation Update - [ ] Refactoring - [ ] Performance Improvement - [ ] Other (please describe): Co-authored-by: Shynggys Samarkhanov <shynggys.samarkhanov@nixs.com>
This commit is contained in:
@ -36,7 +36,7 @@ services:
|
||||
opensearch01:
|
||||
profiles:
|
||||
- opensearch
|
||||
image: hub.icert.top/opensearchproject/opensearch:2.19.1
|
||||
image: opensearchproject/opensearch:2.19.1
|
||||
volumes:
|
||||
- osdata01:/usr/share/opensearch/data
|
||||
ports:
|
||||
|
||||
Reference in New Issue
Block a user