Skip to content

Commit 169d391

Browse files
committed
fix compose image tag didn't match image name in build.yaml
Signed-off-by: Yuan Wu <yuan.wu@intel.com>
1 parent 8c80bd4 commit 169d391

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

GraphRAG/docker_compose/intel/hpu/gaudi/compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ services:
9090
command: --model-id ${LLM_MODEL_ID}
9191

9292
dataprep-neo4j-llamaindex:
93-
image: opea/dataprep-neo4j-llamaindex:comps
93+
image: ${REGISTRY:-opea}/dataprep:${TAG:-latest}
9494
container_name: dataprep-neo4j-llamaindex
9595
depends_on:
9696
neo4j-apoc:
@@ -124,7 +124,7 @@ services:
124124
MAX_INPUT_TOKENS: ${MAX_INPUT_TOKENS:-4096}
125125
restart: unless-stopped
126126
retriever-neo4j:
127-
image: opea/retriever:comps
127+
image: ${REGISTRY:-opea}/retriever:${TAG:-latest}
128128
container_name: retriever-neo4j
129129
ports:
130130
- "${RETRIEVER_PORT:-7000}:7000"

GraphRAG/tests/test_compose_on_gaudi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function build_docker_images() {
3333
echo "Build all the images with --no-cache, check docker_image_build.log for details..."
3434
docker compose -f build.yaml build --no-cache > ${LOG_PATH}/docker_image_build.log
3535

36-
docker pull ghcr.io/huggingface/tgi-gaudi:2.0.6
36+
docker pull ghcr.io/huggingface/tgi-gaudi:2.3.1
3737
docker pull ghcr.io/huggingface/text-embeddings-inference:cpu-1.5
3838
docker images && sleep 1s
3939
}

0 commit comments

Comments
 (0)