Refactor web retrievers links (#1338)
This commit is contained in:
@@ -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`
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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`
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user