Signed-off-by: Chun Tao <chun.tao@intel.com> Signed-off-by: rbrugaro <rita.brugarolas.brufau@intel.com> Signed-off-by: ZePan110 <ze.pan@intel.com> Signed-off-by: Louie Tsai <louie.tsai@intel.com> Signed-off-by: chen, suyue <suyue.chen@intel.com> Co-authored-by: rbrugaro <rita.brugarolas.brufau@intel.com> Co-authored-by: ZePan110 <ze.pan@intel.com> Co-authored-by: kevinintel <hanwen.chang@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Louie Tsai <louie.tsai@intel.com> Co-authored-by: chen, suyue <suyue.chen@intel.com>
74 lines
2.2 KiB
YAML
74 lines
2.2 KiB
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
avatarchatbot:
|
|
build:
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
no_proxy: ${no_proxy}
|
|
context: ../
|
|
dockerfile: ./Dockerfile
|
|
image: ${REGISTRY:-opea}/avatarchatbot:${TAG:-latest}
|
|
whisper-gaudi:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/asr/whisper/dependency/Dockerfile.intel_hpu
|
|
extends: avatarchatbot
|
|
image: ${REGISTRY:-opea}/whisper-gaudi:${TAG:-latest}
|
|
whisper:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/asr/whisper/dependency/Dockerfile
|
|
extends: avatarchatbot
|
|
image: ${REGISTRY:-opea}/whisper:${TAG:-latest}
|
|
asr:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/asr/whisper/Dockerfile
|
|
extends: avatarchatbot
|
|
image: ${REGISTRY:-opea}/asr:${TAG:-latest}
|
|
llm-tgi:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/llms/text-generation/tgi/Dockerfile
|
|
extends: avatarchatbot
|
|
image: ${REGISTRY:-opea}/llm-tgi:${TAG:-latest}
|
|
speecht5-gaudi:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/tts/speecht5/dependency/Dockerfile.intel_hpu
|
|
extends: avatarchatbot
|
|
image: ${REGISTRY:-opea}/speecht5-gaudi:${TAG:-latest}
|
|
speecht5:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/tts/speecht5/dependency/Dockerfile
|
|
extends: avatarchatbot
|
|
image: ${REGISTRY:-opea}/speecht5:${TAG:-latest}
|
|
tts:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/tts/speecht5/Dockerfile
|
|
extends: avatarchatbot
|
|
image: ${REGISTRY:-opea}/tts:${TAG:-latest}
|
|
wav2lip-gaudi:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/animation/wav2lip/dependency/Dockerfile.intel_hpu
|
|
extends: avatarchatbot
|
|
image: ${REGISTRY:-opea}/wav2lip-gaudi:${TAG:-latest}
|
|
wav2lip:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/animation/wav2lip/dependency/Dockerfile
|
|
extends: avatarchatbot
|
|
image: ${REGISTRY:-opea}/wav2lip:${TAG:-latest}
|
|
animation:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/animation/wav2lip/Dockerfile
|
|
extends: avatarchatbot
|
|
image: ${REGISTRY:-opea}/animation:${TAG:-latest}
|