52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
visualqna:
|
|
build:
|
|
args:
|
|
IMAGE_REPO: ${REGISTRY:-opea}
|
|
BASE_TAG: ${TAG:-latest}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
no_proxy: ${no_proxy}
|
|
context: ../
|
|
dockerfile: ./Dockerfile
|
|
image: ${REGISTRY:-opea}/visualqna:${TAG:-latest}
|
|
visualqna-ui:
|
|
build:
|
|
context: ../ui
|
|
dockerfile: ./docker/Dockerfile
|
|
extends: visualqna
|
|
image: ${REGISTRY:-opea}/visualqna-ui:${TAG:-latest}
|
|
lvm:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/lvms/src/Dockerfile
|
|
extends: visualqna
|
|
image: ${REGISTRY:-opea}/lvm:${TAG:-latest}
|
|
nginx:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/third_parties/nginx/src/Dockerfile
|
|
extends: visualqna
|
|
image: ${REGISTRY:-opea}/nginx:${TAG:-latest}
|
|
vllm-rocm:
|
|
build:
|
|
context: GenAIComps
|
|
dockerfile: comps/third_parties/vllm/src/Dockerfile.amd_gpu
|
|
extends: visualqna
|
|
image: ${REGISTRY:-opea}/vllm-rocm:${TAG:-latest}
|
|
vllm:
|
|
build:
|
|
context: vllm
|
|
dockerfile: docker/Dockerfile.cpu
|
|
extends: visualqna
|
|
image: ${REGISTRY:-opea}/vllm:${TAG:-latest}
|
|
vllm-gaudi:
|
|
build:
|
|
context: vllm-fork
|
|
dockerfile: Dockerfile.hpu
|
|
extends: visualqna
|
|
image: ${REGISTRY:-opea}/vllm-gaudi:${TAG:-latest}
|