85 lines
2.6 KiB
YAML
85 lines
2.6 KiB
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
multimodalqna:
|
|
build:
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
no_proxy: ${no_proxy}
|
|
context: ../
|
|
dockerfile: ./Dockerfile
|
|
image: ${REGISTRY:-opea}/multimodalqna:${TAG:-latest}
|
|
multimodalqna-ui:
|
|
build:
|
|
context: ../ui
|
|
dockerfile: ./docker/Dockerfile
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/multimodalqna-ui:${TAG:-latest}
|
|
embedding-multimodal-bridgetower:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/third_parties/bridgetower/src/Dockerfile
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/embedding-multimodal-bridgetower:${TAG:-latest}
|
|
embedding-multimodal-bridgetower-gaudi:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/third_parties/bridgetower/src/Dockerfile.intel_hpu
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/embedding-multimodal-bridgetower-gaudi:${TAG:-latest}
|
|
embedding:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/embeddings/src/Dockerfile
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/embedding:${TAG:-latest}
|
|
retriever:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/retrievers/src/Dockerfile
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/retriever:${TAG:-latest}
|
|
lvm-llava:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/third_parties/llava/src/Dockerfile
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/lvm-llava:${TAG:-latest}
|
|
lvm:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/lvms/src/Dockerfile
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/lvm:${TAG:-latest}
|
|
dataprep:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/dataprep/src/Dockerfile
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/dataprep:${TAG:-latest}
|
|
whisper:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/third_parties/whisper/src/Dockerfile
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/whisper:${TAG:-latest}
|
|
speecht5:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/third_parties/speecht5/src/Dockerfile
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/speecht5:${TAG:-latest}
|
|
tts:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/tts/src/Dockerfile
|
|
extends: multimodalqna
|
|
image: ${REGISTRY:-opea}/tts:${TAG:-latest}
|
|
vllm-rocm:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/third_parties/vllm/src/Dockerfile.amd_gpu
|
|
image: ${REGISTRY:-opea}/vllm-rocm:${TAG:-latest}
|