Files
GenAIExamples/EdgeCraftRAG/docker_image_build/build.yaml
Zhu Yongbo 5a50ae0471 Add new UI/new features for EC-RAG (#1665)
Signed-off-by: Zhu, Yongbo <yongbo.zhu@intel.com>
2025-03-20 10:46:01 +08:00

37 lines
1.0 KiB
YAML

# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
services:
edgecraftrag-server:
build:
context: ..
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
dockerfile: ./Dockerfile.server
image: ${REGISTRY:-opea}/edgecraftrag-server:${TAG:-latest}
edgecraftrag-ui:
build:
context: ..
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
dockerfile: ./ui/docker/Dockerfile.ui
image: ${REGISTRY:-opea}/edgecraftrag-ui:${TAG:-latest}
edgecraftrag-ui-gradio:
build:
context: ..
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
dockerfile: ./ui/docker/Dockerfile.gradio
image: ${REGISTRY:-opea}/edgecraftrag-ui-gradio:${TAG:-latest}
edgecraftrag:
build:
context: ..
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
dockerfile: ./Dockerfile
image: ${REGISTRY:-opea}/edgecraftrag:${TAG:-latest}