chore: update versions

This commit is contained in:
Sun-ZhenXing
2025-12-31 11:07:40 +08:00
parent b8cb5eeea1
commit 1c33225b70
12 changed files with 65 additions and 36 deletions

View File

@@ -1,6 +1,6 @@
# Component versions
MILVUS_VERSION=v2.6.2
ATTU_VERSION=v2.6.0
MILVUS_VERSION=v2.6.7
ATTU_VERSION=v2.6.4
# Milvus configuration
MILVUS_PORT_OVERRIDE_HTTP=19530

View File

@@ -23,8 +23,8 @@ docker compose --profile attu up -d
## Configuration
- `MILVUS_VERSION`: The version of the Milvus image, default is `v2.6.2`.
- `ATTU_VERSION`: The version of the Attu image, default is `v2.6.0`.
- `MILVUS_VERSION`: The version of the Milvus image, default is `v2.6.7`.
- `ATTU_VERSION`: The version of the Attu image, default is `v2.6.4`.
- `MILVUS_PORT_OVERRIDE_HTTP`: The host port for the Milvus HTTP service, default is `19530`.
- `MILVUS_PORT_OVERRIDE_WEBUI`: The host port for the Milvus Web UI, default is `9091`.
- `MILVUS_PORT_OVERRIDE_ETCD`: The host port for the etcd service, default is `2379`.

View File

@@ -23,8 +23,8 @@ docker compose --profile attu up -d
## 配置
- `MILVUS_VERSION`: Milvus 镜像的版本,默认为 `v2.6.2`
- `ATTU_VERSION`: Attu 镜像的版本,默认为 `v2.6.0`
- `MILVUS_VERSION`: Milvus 镜像的版本,默认为 `v2.6.7`
- `ATTU_VERSION`: Attu 镜像的版本,默认为 `v2.6.4`
- `MILVUS_PORT_OVERRIDE_HTTP`: Milvus HTTP 服务的主机端口,默认为 `19530`
- `MILVUS_PORT_OVERRIDE_WEBUI`: Milvus Web UI 的主机端口,默认为 `9091`
- `MILVUS_PORT_OVERRIDE_ETCD`: etcd 服务的主机端口,默认为 `2379`

View File

@@ -9,7 +9,7 @@ x-defaults: &defaults
services:
milvus-standalone-embed:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}milvusdb/milvus:${MILVUS_VERSION:-v2.6.3}
image: ${GLOBAL_REGISTRY:-}milvusdb/milvus:${MILVUS_VERSION:-v2.6.7}
security_opt:
- seccomp:unconfined
environment:
@@ -45,7 +45,7 @@ services:
attu:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}zilliz/attu:${ATTU_VERSION:-v2.6.1}
image: ${GLOBAL_REGISTRY:-}zilliz/attu:${ATTU_VERSION:-v2.6.4}
profiles:
- attu
environment:
@@ -53,6 +53,9 @@ services:
MILVUS_URL: ${MILVUS_URL:-milvus-standalone-embed:19530}
ports:
- "${ATTU_OVERRIDE_PORT:-8000}:3000"
depends_on:
milvus-standalone-embed:
condition: service_healthy
deploy:
resources:
limits:
@@ -61,6 +64,12 @@ services:
reservations:
cpus: ${ATTU_CPU_RESERVATION:-0.1}
memory: ${ATTU_MEMORY_RESERVATION:-128M}
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
volumes: