fix the docker image name for release image build (#1152)
Signed-off-by: chensuyue <suyue.chen@intel.com>
This commit is contained in:
@@ -145,9 +145,9 @@ services:
|
||||
- LOGFLAG=${LOGFLAG}
|
||||
ipc: host
|
||||
restart: always
|
||||
chatqna-gaudi-ui-server:
|
||||
graphrag-ui-server:
|
||||
image: ${REGISTRY:-opea}/graphrag-ui:${TAG:-latest}
|
||||
container_name: chatqna-gaudi-ui-server
|
||||
container_name: graphrag-ui-server
|
||||
depends_on:
|
||||
- graphrag-gaudi-backend-server
|
||||
ports:
|
||||
@@ -163,14 +163,14 @@ services:
|
||||
container_name: chatqna-gaudi-nginx-server
|
||||
depends_on:
|
||||
- graphrag-gaudi-backend-server
|
||||
- chatqna-gaudi-ui-server
|
||||
- graphrag-ui-server
|
||||
ports:
|
||||
- "${NGINX_PORT:-80}:80"
|
||||
environment:
|
||||
- no_proxy=${no_proxy}
|
||||
- https_proxy=${https_proxy}
|
||||
- http_proxy=${http_proxy}
|
||||
- FRONTEND_SERVICE_IP=chatqna-gaudi-ui-server
|
||||
- FRONTEND_SERVICE_IP=graphrag-ui-server
|
||||
- FRONTEND_SERVICE_PORT=5173
|
||||
- BACKEND_SERVICE_NAME=graphrag
|
||||
- BACKEND_SERVICE_IP=graphrag-gaudi-backend-server
|
||||
|
||||
@@ -29,7 +29,7 @@ services:
|
||||
context: GenAIComps
|
||||
dockerfile: comps/dataprep/neo4j/llama_index/Dockerfile
|
||||
image: ${REGISTRY:-opea}/dataprep-neo4j-llamaindex:${TAG:-latest}
|
||||
chatqna-gaudi-nginx-server:
|
||||
nginx:
|
||||
build:
|
||||
args:
|
||||
http_proxy: ${http_proxy}
|
||||
@@ -38,7 +38,7 @@ services:
|
||||
context: GenAIComps
|
||||
dockerfile: comps/nginx/Dockerfile
|
||||
image: ${REGISTRY:-opea}/nginx:${TAG:-latest}
|
||||
chatqna-gaudi-ui-server:
|
||||
graphrag-ui:
|
||||
build:
|
||||
args:
|
||||
http_proxy: ${http_proxy}
|
||||
|
||||
@@ -19,12 +19,10 @@ function build_docker_images() {
|
||||
git clone https://github.com/opea-project/GenAIComps.git && cd GenAIComps && git checkout "${opea_branch:-"main"}" && cd ../
|
||||
|
||||
echo "Build all the images with --no-cache, check docker_image_build.log for details..."
|
||||
service_list="graphrag dataprep-neo4j-llamaindex retriever-neo4j-llamaindex chatqna-gaudi-ui-server chatqna-gaudi-nginx-server"
|
||||
docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH}/docker_image_build.log
|
||||
docker compose -f build.yaml build --no-cache > ${LOG_PATH}/docker_image_build.log
|
||||
|
||||
docker pull ghcr.io/huggingface/tgi-gaudi:2.0.6
|
||||
docker pull ghcr.io/huggingface/text-embeddings-inference:cpu-1.5
|
||||
docker pull neo4j:latest
|
||||
docker images && sleep 1s
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user