Signed-off-by: Xinyao Wang <xinyao.wang@intel.com> Signed-off-by: lvliang-intel <liang1.lv@intel.com> Signed-off-by: letonghan <letong.han@intel.com> Signed-off-by: Wang, Kai Lawrence <kai.lawrence.wang@intel.com> Signed-off-by: Wang, Xigui <xigui.wang@intel.com> Signed-off-by: chensuyue <suyue.chen@intel.com> Signed-off-by: WenjiaoYue <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>
44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
embedding-multimodal-bridgetower:
|
|
image: opea/embedding-multimodal-bridgetower:latest
|
|
container_name: embedding-multimodal-bridgetower
|
|
ports:
|
|
- ${EMBEDDER_PORT}:${EMBEDDER_PORT}
|
|
ipc: host
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
PORT: ${EMBEDDER_PORT}
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "http_proxy='' curl -f http://localhost:${EMBEDDER_PORT}/v1/health_check"]
|
|
interval: 10s
|
|
timeout: 6s
|
|
retries: 18
|
|
start_period: 30s
|
|
embedding-multimodal:
|
|
image: opea/embedding:latest
|
|
container_name: embedding-multimodal-bridgetower-server
|
|
ports:
|
|
- ${MM_EMBEDDING_PORT_MICROSERVICE}:${MM_EMBEDDING_PORT_MICROSERVICE}
|
|
ipc: host
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
MULTIMODAL_EMBEDDING: true
|
|
MMEI_EMBEDDING_ENDPOINT: ${MMEI_EMBEDDING_ENDPOINT}
|
|
MM_EMBEDDING_PORT_MICROSERVICE: ${MM_EMBEDDING_PORT_MICROSERVICE}
|
|
restart: unless-stopped
|
|
depends_on:
|
|
embedding-multimodal-bridgetower:
|
|
condition: service_healthy
|
|
|
|
networks:
|
|
default:
|
|
driver: bridge
|