49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
codegen:
|
|
build:
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
no_proxy: ${no_proxy}
|
|
context: ../
|
|
dockerfile: ./Dockerfile
|
|
image: ${REGISTRY:-opea}/codegen:${TAG:-latest}
|
|
codegen-ui:
|
|
build:
|
|
context: ../ui
|
|
dockerfile: ./docker/Dockerfile
|
|
extends: codegen
|
|
image: ${REGISTRY:-opea}/codegen-ui:${TAG:-latest}
|
|
codegen-react-ui:
|
|
build:
|
|
context: ../ui
|
|
dockerfile: ./docker/Dockerfile.react
|
|
extends: codegen
|
|
image: ${REGISTRY:-opea}/codegen-react-ui:${TAG:-latest}
|
|
llm-textgen:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/llms/src/text-generation/Dockerfile
|
|
extends: codegen
|
|
image: ${REGISTRY:-opea}/llm-textgen:${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: Dockerfile.cpu
|
|
extends: codegen
|
|
image: ${REGISTRY:-opea}/vllm:${TAG:-latest}
|
|
vllm-gaudi:
|
|
build:
|
|
context: vllm-fork
|
|
dockerfile: Dockerfile.hpu
|
|
extends: codegen
|
|
image: ${REGISTRY:-opea}/vllm-gaudi:${TAG:-latest}
|