Signed-off-by: letonghan <letong.han@intel.com> Signed-off-by: root <root@a4bf019305c5.jf.intel.com> Co-authored-by: root <root@a4bf019305c5.jf.intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
32 lines
863 B
YAML
32 lines
863 B
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
translation:
|
|
build:
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
no_proxy: ${no_proxy}
|
|
context: ../
|
|
dockerfile: ./Dockerfile
|
|
image: ${REGISTRY:-opea}/translation:${TAG:-latest}
|
|
translation-ui:
|
|
build:
|
|
context: ../ui
|
|
dockerfile: ./docker/Dockerfile
|
|
extends: translation
|
|
image: ${REGISTRY:-opea}/translation-ui:${TAG:-latest}
|
|
llm-tgi:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/llms/text-generation/tgi/Dockerfile
|
|
extends: translation
|
|
image: ${REGISTRY:-opea}/llm-tgi:${TAG:-latest}
|
|
nginx:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/nginx/Dockerfile
|
|
extends: translation
|
|
image: ${REGISTRY:-opea}/translation-nginx:${TAG:-latest}
|