Refactor web retrievers links (#1338)

This commit is contained in:
Sihan Chen
2025-01-08 16:19:50 +08:00
committed by GitHub
parent b3c405a5f6
commit 5128c2d650
8 changed files with 16 additions and 16 deletions

View File

@@ -15,7 +15,7 @@ docker build --no-cache -t opea/embedding:latest --build-arg https_proxy=$https_
### 2. Build Retriever Image
```bash
docker build --no-cache -t opea/web-retriever-chroma:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/web_retrievers/chroma/langchain/Dockerfile .
docker build --no-cache -t opea/web-retriever:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/web_retrievers/src/Dockerfile .
```
### 3. Build Rerank Image
@@ -52,7 +52,7 @@ docker build --no-cache -t opea/opea/searchqna-ui:latest --build-arg https_proxy
Then run the command `docker images`, you will have following images ready:
1. `opea/embedding:latest`
2. `opea/web-retriever-chroma:latest`
2. `opea/web-retriever:latest`
3. `opea/reranking:latest`
4. `opea/llm-textgen:latest`
5. `opea/searchqna:latest`

View File

@@ -39,8 +39,8 @@ services:
LOGFLAG: ${LOGFLAG}
restart: unless-stopped
web-retriever:
image: ${REGISTRY:-opea}/web-retriever-chroma:${TAG:-latest}
container_name: web-retriever-chroma-server
image: ${REGISTRY:-opea}/web-retriever:${TAG:-latest}
container_name: web-retriever-server
ports:
- "3003:7077"
ipc: host

View File

@@ -17,7 +17,7 @@ docker build --no-cache -t opea/embedding:latest --build-arg https_proxy=$https_
### 2. Build Retriever Image
```bash
docker build --no-cache -t opea/web-retriever-chroma:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/web_retrievers/chroma/langchain/Dockerfile .
docker build --no-cache -t opea/web-retriever:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/web_retrievers/src/Dockerfile .
```
### 3. Build Rerank Image
@@ -52,7 +52,7 @@ docker build --no-cache -t opea/searchqna:latest --build-arg https_proxy=$https_
Then run the command `docker images`, you will have
1. `opea/embedding:latest`
2. `opea/web-retriever-chroma:latest`
2. `opea/web-retriever:latest`
3. `opea/reranking:latest`
4. `opea/llm-textgen:latest`
5. `opea/searchqna:latest`

View File

@@ -47,8 +47,8 @@ services:
LOGFLAG: ${LOGFLAG}
restart: unless-stopped
web-retriever:
image: ${REGISTRY:-opea}/web-retriever-chroma:${TAG:-latest}
container_name: web-retriever-chroma-server
image: ${REGISTRY:-opea}/web-retriever:${TAG:-latest}
container_name: web-retriever-server
ports:
- "3003:7077"
ipc: host