Signed-off-by: ZePan110 <ze.pan@intel.com> Signed-off-by: chensuyue <suyue.chen@intel.com> Signed-off-by: Zhu, Yongbo <yongbo.zhu@intel.com> Signed-off-by: Wang, Xigui <xigui.wang@intel.com> Co-authored-by: ZePan110 <ze.pan@intel.com> Co-authored-by: chen, suyue <suyue.chen@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: xiguiw <111278656+xiguiw@users.noreply.github.com> Co-authored-by: lvliang-intel <liang1.lv@intel.com>
29 lines
740 B
YAML
29 lines
740 B
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
server:
|
|
build:
|
|
context: ..
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
dockerfile: ./Dockerfile.server
|
|
image: ${REGISTRY:-opea}/edgecraftrag-server:${TAG:-latest}
|
|
ui:
|
|
build:
|
|
context: ..
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
dockerfile: ./ui/docker/Dockerfile.ui
|
|
image: ${REGISTRY:-opea}/edgecraftrag-ui:${TAG:-latest}
|
|
ecrag:
|
|
build:
|
|
context: ..
|
|
args:
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
dockerfile: ./Dockerfile
|
|
image: ${REGISTRY:-opea}/edgecraftrag:${TAG:-latest}
|