21 lines
583 B
YAML
21 lines
583 B
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# this file should be run in the root of the repo
|
|
services:
|
|
chatqna:
|
|
build:
|
|
context: docker
|
|
dockerfile: ./Dockerfile
|
|
image: ${REGISTRY:-opea}/chatqna:${TAG:-latest}
|
|
chatqna-ui:
|
|
build:
|
|
context: docker/ui
|
|
dockerfile: ./docker/Dockerfile
|
|
image: ${REGISTRY:-opea}/chatqna-ui:${TAG:-latest}
|
|
chatqna-conversation-ui:
|
|
build:
|
|
context: docker/ui
|
|
dockerfile: ./docker/Dockerfile.react
|
|
image: ${REGISTRY:-opea}/chatqna-conversation-ui:${TAG:-latest}
|