69 lines
1.9 KiB
YAML
69 lines
1.9 KiB
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
docsum:
|
|
build:
|
|
args:
|
|
IMAGE_REPO: ${REGISTRY}
|
|
BASE_TAG: ${TAG}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
no_proxy: ${no_proxy}
|
|
context: ../
|
|
dockerfile: ./Dockerfile
|
|
image: ${REGISTRY:-opea}/docsum:${TAG:-latest}
|
|
docsum-gradio-ui:
|
|
build:
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
context: ../ui
|
|
dockerfile: ./docker/Dockerfile.gradio
|
|
extends: docsum
|
|
image: ${REGISTRY:-opea}/docsum-gradio-ui:${TAG:-latest}
|
|
docsum-ui:
|
|
build:
|
|
context: ../ui
|
|
dockerfile: ./docker/Dockerfile
|
|
extends: docsum
|
|
image: ${REGISTRY:-opea}/docsum-ui:${TAG:-latest}
|
|
docsum-react-ui:
|
|
build:
|
|
context: ../ui
|
|
dockerfile: ./docker/Dockerfile.react
|
|
extends: docsum
|
|
image: ${REGISTRY:-opea}/docsum-react-ui:${TAG:-latest}
|
|
whisper:
|
|
build:
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
context: GenAIComps
|
|
dockerfile: comps/third_parties/whisper/src/Dockerfile
|
|
extends: docsum
|
|
image: ${REGISTRY:-opea}/whisper:${TAG:-latest}
|
|
llm-docsum:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/llms/src/doc-summarization/Dockerfile
|
|
extends: docsum
|
|
image: ${REGISTRY:-opea}/llm-docsum:${TAG:-latest}
|
|
vllm-rocm:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/third_parties/vllm/src/Dockerfile.amd_gpu
|
|
image: ${REGISTRY:-opea}/vllm-rocm:${TAG:-latest}
|
|
vllm:
|
|
build:
|
|
context: vllm
|
|
dockerfile: docker/Dockerfile.cpu
|
|
extends: docsum
|
|
image: ${REGISTRY:-opea}/vllm:${TAG:-latest}
|
|
vllm-gaudi:
|
|
build:
|
|
context: vllm-fork
|
|
dockerfile: Dockerfile.hpu
|
|
extends: docsum
|
|
image: ${REGISTRY:-opea}/vllm-gaudi:${TAG:-latest}
|