Skip to content

Commit

Permalink
update docker image name in readme (opea-project#99)
Browse files Browse the repository at this point in the history
Signed-off-by: letonghan <[email protected]>
Co-authored-by: Sihan Chen <[email protected]>
Signed-off-by: V, Ganesan <[email protected]>
  • Loading branch information
2 people authored and ganesanintel committed Jun 3, 2024
1 parent 28af518 commit 7c67970
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions comps/dataprep/qdrant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ python prepare_doc_qdrant.py

```bash
cd ../../../../
docker build -t opea/gen-ai-comps:dataprep-qdrant-xeon-server --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/dataprep/qdrant/docker/Dockerfile .
docker build -t opea/dataprep-qdrant:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/dataprep/qdrant/docker/Dockerfile .
```

## Run Docker with CLI

```bash
docker run -d --name="dataprep-qdrant-server" -p 6000:6000 --ipc=host -e http_proxy=$http_proxy -e https_proxy=$https_proxy opea/gen-ai-comps:dataprep-qdrant-xeon-server
docker run -d --name="dataprep-qdrant-server" -p 6000:6000 --ipc=host -e http_proxy=$http_proxy -e https_proxy=$https_proxy opea/dataprep-qdrant:latest
```

## Setup Environment Variables
Expand Down
4 changes: 2 additions & 2 deletions comps/guardrails/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ export LANGCHAIN_PROJECT="opea/gen-ai-comps:gaurdrails"

```bash
cd ../../
docker build -t opea/gen-ai-comps:guardrails-tgi-gaudi-server --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/guardrails/langchain/docker/Dockerfile .
docker build -t opea/guardrails-tgi:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/guardrails/langchain/docker/Dockerfile .
```

## Run Docker with CLI

```bash
docker run -d --name="guardrails-tgi-server" -p 9090:9090 --ipc=host -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e SAFETY_GUARD_ENDPOINT=$SAFETY_GUARD_ENDPOINT -e HUGGINGFACEHUB_API_TOKEN=$HUGGINGFACEHUB_API_TOKEN opea/gen-ai-comps:guardrails-tgi-gauid-server
docker run -d --name="guardrails-tgi-server" -p 9090:9090 --ipc=host -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e SAFETY_GUARD_ENDPOINT=$SAFETY_GUARD_ENDPOINT -e HUGGINGFACEHUB_API_TOKEN=$HUGGINGFACEHUB_API_TOKEN opea/guardrails-tgi:latest
```

## Run Docker with Docker Compose
Expand Down
4 changes: 2 additions & 2 deletions comps/llms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export LANGCHAIN_PROJECT="opea/gen-ai-comps:llms"

```bash
cd ../../
docker build -t opea/gen-ai-comps:llm-tgi-server --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/llms/langchain/docker/Dockerfile .
docker build -t opea/llm-tgi:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/llms/text-generation/tgi/Dockerfile .
```

## Run Docker with CLI
Expand All @@ -75,7 +75,7 @@ docker run -d --name="llm-tgi-server" -p 9000:9000 --ipc=host -e http_proxy=$htt
## Run Docker with Docker Compose

```bash
cd langchain/docker
cd text-generation/tgi
docker compose -f docker_compose_llm.yaml up -d
```

Expand Down
2 changes: 1 addition & 1 deletion comps/reranks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ If you start an Reranking microservice with docker, the `docker_compose_rerankin

```bash
cd ../../
docker build -t opea/gen-ai-comps:reranking-tei-xeon-server --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/reranks/langchain/docker/Dockerfile .
docker build -t opea/reranking-tei:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/reranks/langchain/docker/Dockerfile .
```

## Run Docker with CLI
Expand Down

0 comments on commit 7c67970

Please sign in to comment.