mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
62fdfe125f
there are two purposes for this PR 1. to add some comments on variable in the .env file. 2. avoid git merge conflict when one PR update the value of DATE_VERSION and LATEST_DATE_VERSION and meanwhile other PR updates the value of GPU_DATE_VERSION and LATEST_GPU_DATE_VERSION , especailly when github actions Publish Builder and Publish gpu Builder occur at same time Signed-off-by: Sammy Huang <sammy.huang@zilliz.com>
20 lines
742 B
Bash
20 lines
742 B
Bash
# to define environment variables available to docker-compose.yml
|
|
|
|
IMAGE_REPO=milvusdb
|
|
IMAGE_ARCH=amd64
|
|
OS_NAME=ubuntu20.04
|
|
|
|
# for services.builder.image in docker-compose.yml
|
|
DATE_VERSION=20231212-4651f89
|
|
LATEST_DATE_VERSION=20231212-4651f89
|
|
|
|
# for services.gpubuilder.image in docker-compose.yml
|
|
GPU_DATE_VERSION=20231212-4651f89
|
|
LATEST_GPU_DATE_VERSION=20231212-4651f89
|
|
|
|
# for other services in docker-compose.yml
|
|
MINIO_ADDRESS=minio:9000
|
|
PULSAR_ADDRESS=pulsar://pulsar:6650
|
|
ETCD_ENDPOINTS=etcd:2379
|
|
AZURITE_CONNECTION_STRING="DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azurite:10000/devstoreaccount1;"
|