Signed-off-by: lvliang-intel <liang1.lv@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
151 lines
4.4 KiB
YAML
151 lines
4.4 KiB
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
tei-embedding-service:
|
|
image: ghcr.io/huggingface/text-embeddings-inference:cpu-1.5
|
|
container_name: tei-embedding-server
|
|
ports:
|
|
- "3001:80"
|
|
volumes:
|
|
- "./data:/data"
|
|
shm_size: 1g
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
command: --model-id ${EMBEDDING_MODEL_ID} --auto-truncate
|
|
embedding:
|
|
image: ${REGISTRY:-opea}/embedding-tei:${TAG:-latest}
|
|
container_name: embedding-tei-server
|
|
depends_on:
|
|
- tei-embedding-service
|
|
ports:
|
|
- "3002:6000"
|
|
ipc: host
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
TEI_EMBEDDING_ENDPOINT: ${TEI_EMBEDDING_ENDPOINT}
|
|
HF_TOKEN: ${HUGGINGFACEHUB_API_TOKEN}
|
|
restart: unless-stopped
|
|
web-retriever:
|
|
image: ${REGISTRY:-opea}/web-retriever-chroma:${TAG:-latest}
|
|
container_name: web-retriever-chroma-server
|
|
ports:
|
|
- "3003:7077"
|
|
ipc: host
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
TEI_EMBEDDING_ENDPOINT: ${TEI_EMBEDDING_ENDPOINT}
|
|
GOOGLE_API_KEY: ${GOOGLE_API_KEY}
|
|
GOOGLE_CSE_ID: ${GOOGLE_CSE_ID}
|
|
restart: unless-stopped
|
|
tei-reranking-service:
|
|
image: ghcr.io/huggingface/text-embeddings-inference:cpu-1.5
|
|
container_name: tei-reranking-server
|
|
ports:
|
|
- "3004:80"
|
|
volumes:
|
|
- "./data:/data"
|
|
shm_size: 1g
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
command: --model-id ${RERANK_MODEL_ID} --auto-truncate
|
|
reranking:
|
|
image: ${REGISTRY:-opea}/reranking-tei:${TAG:-latest}
|
|
container_name: reranking-tei-xeon-server
|
|
depends_on:
|
|
- tei-reranking-service
|
|
ports:
|
|
- "3005:8000"
|
|
ipc: host
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
TEI_RERANKING_ENDPOINT: ${TEI_RERANKING_ENDPOINT}
|
|
HUGGINGFACEHUB_API_TOKEN: ${HUGGINGFACEHUB_API_TOKEN}
|
|
restart: unless-stopped
|
|
tgi-service:
|
|
image: ghcr.io/huggingface/text-generation-inference:2.4.0-intel-cpu
|
|
container_name: tgi-service
|
|
ports:
|
|
- "3006:80"
|
|
volumes:
|
|
- "./data:/data"
|
|
shm_size: 1g
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
HF_TOKEN: ${HUGGINGFACEHUB_API_TOKEN}
|
|
command: --model-id ${LLM_MODEL_ID} --cuda-graphs 0
|
|
llm:
|
|
image: ${REGISTRY:-opea}/llm-tgi:${TAG:-latest}
|
|
container_name: llm-tgi-server
|
|
depends_on:
|
|
- tgi-service
|
|
ports:
|
|
- "3007:9000"
|
|
ipc: host
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
TGI_LLM_ENDPOINT: ${TGI_LLM_ENDPOINT}
|
|
HUGGINGFACEHUB_API_TOKEN: ${HUGGINGFACEHUB_API_TOKEN}
|
|
restart: unless-stopped
|
|
searchqna-xeon-backend-server:
|
|
image: ${REGISTRY:-opea}/searchqna:${TAG:-latest}
|
|
container_name: searchqna-xeon-backend-server
|
|
depends_on:
|
|
- tei-embedding-service
|
|
- embedding
|
|
- web-retriever
|
|
- tei-reranking-service
|
|
- reranking
|
|
- tgi-service
|
|
- llm
|
|
ports:
|
|
- "3008:8888"
|
|
environment:
|
|
- no_proxy=${no_proxy}
|
|
- https_proxy=${https_proxy}
|
|
- http_proxy=${http_proxy}
|
|
- MEGA_SERVICE_HOST_IP=${MEGA_SERVICE_HOST_IP}
|
|
- EMBEDDING_SERVICE_HOST_IP=${EMBEDDING_SERVICE_HOST_IP}
|
|
- WEB_RETRIEVER_SERVICE_HOST_IP=${WEB_RETRIEVER_SERVICE_HOST_IP}
|
|
- RERANK_SERVICE_HOST_IP=${RERANK_SERVICE_HOST_IP}
|
|
- LLM_SERVICE_HOST_IP=${LLM_SERVICE_HOST_IP}
|
|
- EMBEDDING_SERVICE_PORT=${EMBEDDING_SERVICE_PORT}
|
|
- WEB_RETRIEVER_SERVICE_PORT=${WEB_RETRIEVER_SERVICE_PORT}
|
|
- RERANK_SERVICE_PORT=${RERANK_SERVICE_PORT}
|
|
- LLM_SERVICE_PORT=${LLM_SERVICE_PORT}
|
|
ipc: host
|
|
restart: always
|
|
searchqna-xeon-ui-server:
|
|
image: ${REGISTRY:-opea}/searchqna-ui:${TAG:-latest}
|
|
container_name: searchqna-xeon-ui-server
|
|
depends_on:
|
|
- searchqna-xeon-backend-server
|
|
ports:
|
|
- "5173:5173"
|
|
environment:
|
|
- no_proxy=${no_proxy}
|
|
- https_proxy=${https_proxy}
|
|
- http_proxy=${http_proxy}
|
|
- BACKEND_BASE_URL=${BACKEND_SERVICE_ENDPOINT}
|
|
ipc: host
|
|
restart: always
|
|
|
|
|
|
networks:
|
|
default:
|
|
driver: bridge
|