chore: update versions
This commit is contained in:
@@ -55,8 +55,8 @@ Compose Anything helps users quickly deploy various services by providing a set
|
|||||||
| [LiteLLM](./src/litellm) | main-stable |
|
| [LiteLLM](./src/litellm) | main-stable |
|
||||||
| [Logstash](./src/logstash) | 8.16.1 |
|
| [Logstash](./src/logstash) | 8.16.1 |
|
||||||
| [MariaDB Galera Cluster](./src/mariadb-galera) | 11.7.2 |
|
| [MariaDB Galera Cluster](./src/mariadb-galera) | 11.7.2 |
|
||||||
| [Milvus Standalone Embed](./src/milvus-standalone-embed) | 2.6.2 |
|
| [Milvus Standalone Embed](./src/milvus-standalone-embed) | v2.6.7 |
|
||||||
| [Milvus Standalone](./src/milvus-standalone) | 2.6.2 |
|
| [Milvus Standalone](./src/milvus-standalone) | v2.6.7 |
|
||||||
| [Minecraft Bedrock Server](./src/minecraft-bedrock-server) | latest |
|
| [Minecraft Bedrock Server](./src/minecraft-bedrock-server) | latest |
|
||||||
| [MinerU SGLang](./src/mineru-sglang) | 2.2.2 |
|
| [MinerU SGLang](./src/mineru-sglang) | 2.2.2 |
|
||||||
| [MinerU vLLM](./builds/mineru-vllm) | 2.6.4 |
|
| [MinerU vLLM](./builds/mineru-vllm) | 2.6.4 |
|
||||||
|
|||||||
@@ -55,8 +55,8 @@ Compose Anything 通过提供一组高质量的 Docker Compose 配置文件,
|
|||||||
| [LiteLLM](./src/litellm) | main-stable |
|
| [LiteLLM](./src/litellm) | main-stable |
|
||||||
| [Logstash](./src/logstash) | 8.16.1 |
|
| [Logstash](./src/logstash) | 8.16.1 |
|
||||||
| [MariaDB Galera 集群](./src/mariadb-galera) | 11.7.2 |
|
| [MariaDB Galera 集群](./src/mariadb-galera) | 11.7.2 |
|
||||||
| [Milvus Standalone Embed](./src/milvus-standalone-embed) | 2.6.2 |
|
| [Milvus Standalone Embed](./src/milvus-standalone-embed) | v2.6.7 |
|
||||||
| [Milvus Standalone](./src/milvus-standalone) | 2.6.2 |
|
| [Milvus Standalone](./src/milvus-standalone) | v2.6.7 |
|
||||||
| [Minecraft Bedrock Server](./src/minecraft-bedrock-server) | latest |
|
| [Minecraft Bedrock Server](./src/minecraft-bedrock-server) | latest |
|
||||||
| [MinerU SGLang](./src/mineru-sglang) | 2.2.2 |
|
| [MinerU SGLang](./src/mineru-sglang) | 2.2.2 |
|
||||||
| [MinerU vLLM](./builds/mineru-vllm) | 2.6.4 |
|
| [MinerU vLLM](./builds/mineru-vllm) | 2.6.4 |
|
||||||
|
|||||||
@@ -22,20 +22,22 @@ x-mineru-vllm: &mineru-vllm
|
|||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpus: '16.0'
|
cpus: "16.0"
|
||||||
memory: 32G
|
memory: 32G
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '8.0'
|
cpus: "8.0"
|
||||||
memory: 16G
|
memory: 16G
|
||||||
devices:
|
devices:
|
||||||
- driver: nvidia
|
- driver: nvidia
|
||||||
device_ids: [ '0' ]
|
device_ids: ["0"]
|
||||||
capabilities: [gpu]
|
capabilities: [gpu]
|
||||||
|
|
||||||
services:
|
services:
|
||||||
mineru-openai-server:
|
mineru-openai-server:
|
||||||
<<: *mineru-vllm
|
<<: *mineru-vllm
|
||||||
profiles: ["openai-server"]
|
profiles:
|
||||||
|
- "openai-server"
|
||||||
|
- ${COMPOSE_PROFILES:-}
|
||||||
ports:
|
ports:
|
||||||
- ${MINERU_PORT_OVERRIDE_VLLM:-30000}:30000
|
- ${MINERU_PORT_OVERRIDE_VLLM:-30000}:30000
|
||||||
entrypoint: mineru-openai-server
|
entrypoint: mineru-openai-server
|
||||||
@@ -70,7 +72,6 @@ services:
|
|||||||
retries: 3
|
retries: 3
|
||||||
start_period: 60s
|
start_period: 60s
|
||||||
|
|
||||||
|
|
||||||
mineru-api:
|
mineru-api:
|
||||||
<<: *mineru-vllm
|
<<: *mineru-vllm
|
||||||
profiles: ["api"]
|
profiles: ["api"]
|
||||||
@@ -94,7 +95,15 @@ services:
|
|||||||
# Single GPU memory optimization
|
# Single GPU memory optimization
|
||||||
# --cache-max-entry-count 0.5 # Try 0.4 or lower if VRAM insufficient
|
# --cache-max-entry-count 0.5 # Try 0.4 or lower if VRAM insufficient
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8000/health"]
|
test:
|
||||||
|
[
|
||||||
|
"CMD",
|
||||||
|
"wget",
|
||||||
|
"--no-verbose",
|
||||||
|
"--tries=1",
|
||||||
|
"--spider",
|
||||||
|
"http://localhost:8000/health",
|
||||||
|
]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
@@ -132,7 +141,15 @@ services:
|
|||||||
# Single GPU memory optimization
|
# Single GPU memory optimization
|
||||||
# --cache-max-entry-count 0.5 # Try 0.4 or lower if VRAM insufficient
|
# --cache-max-entry-count 0.5 # Try 0.4 or lower if VRAM insufficient
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:7860/"]
|
test:
|
||||||
|
[
|
||||||
|
"CMD",
|
||||||
|
"wget",
|
||||||
|
"--no-verbose",
|
||||||
|
"--tries=1",
|
||||||
|
"--spider",
|
||||||
|
"http://localhost:7860/",
|
||||||
|
]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Component versions
|
# Component versions
|
||||||
MILVUS_VERSION=v2.6.2
|
MILVUS_VERSION=v2.6.7
|
||||||
ATTU_VERSION=v2.6.0
|
ATTU_VERSION=v2.6.4
|
||||||
|
|
||||||
# Milvus configuration
|
# Milvus configuration
|
||||||
MILVUS_PORT_OVERRIDE_HTTP=19530
|
MILVUS_PORT_OVERRIDE_HTTP=19530
|
||||||
|
|||||||
@@ -23,8 +23,8 @@ docker compose --profile attu up -d
|
|||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
- `MILVUS_VERSION`: The version of the Milvus image, default is `v2.6.2`.
|
- `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.0`.
|
- `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_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_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`.
|
- `MILVUS_PORT_OVERRIDE_ETCD`: The host port for the etcd service, default is `2379`.
|
||||||
|
|||||||
@@ -23,8 +23,8 @@ docker compose --profile attu up -d
|
|||||||
|
|
||||||
## 配置
|
## 配置
|
||||||
|
|
||||||
- `MILVUS_VERSION`: Milvus 镜像的版本,默认为 `v2.6.2`。
|
- `MILVUS_VERSION`: Milvus 镜像的版本,默认为 `v2.6.7`。
|
||||||
- `ATTU_VERSION`: Attu 镜像的版本,默认为 `v2.6.0`。
|
- `ATTU_VERSION`: Attu 镜像的版本,默认为 `v2.6.4`。
|
||||||
- `MILVUS_PORT_OVERRIDE_HTTP`: Milvus HTTP 服务的主机端口,默认为 `19530`。
|
- `MILVUS_PORT_OVERRIDE_HTTP`: Milvus HTTP 服务的主机端口,默认为 `19530`。
|
||||||
- `MILVUS_PORT_OVERRIDE_WEBUI`: Milvus Web UI 的主机端口,默认为 `9091`。
|
- `MILVUS_PORT_OVERRIDE_WEBUI`: Milvus Web UI 的主机端口,默认为 `9091`。
|
||||||
- `MILVUS_PORT_OVERRIDE_ETCD`: etcd 服务的主机端口,默认为 `2379`。
|
- `MILVUS_PORT_OVERRIDE_ETCD`: etcd 服务的主机端口,默认为 `2379`。
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
|||||||
services:
|
services:
|
||||||
milvus-standalone-embed:
|
milvus-standalone-embed:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
image: ${GLOBAL_REGISTRY:-}milvusdb/milvus:${MILVUS_VERSION:-v2.6.3}
|
image: ${GLOBAL_REGISTRY:-}milvusdb/milvus:${MILVUS_VERSION:-v2.6.7}
|
||||||
security_opt:
|
security_opt:
|
||||||
- seccomp:unconfined
|
- seccomp:unconfined
|
||||||
environment:
|
environment:
|
||||||
@@ -45,7 +45,7 @@ services:
|
|||||||
|
|
||||||
attu:
|
attu:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
image: ${GLOBAL_REGISTRY:-}zilliz/attu:${ATTU_VERSION:-v2.6.1}
|
image: ${GLOBAL_REGISTRY:-}zilliz/attu:${ATTU_VERSION:-v2.6.4}
|
||||||
profiles:
|
profiles:
|
||||||
- attu
|
- attu
|
||||||
environment:
|
environment:
|
||||||
@@ -53,6 +53,9 @@ services:
|
|||||||
MILVUS_URL: ${MILVUS_URL:-milvus-standalone-embed:19530}
|
MILVUS_URL: ${MILVUS_URL:-milvus-standalone-embed:19530}
|
||||||
ports:
|
ports:
|
||||||
- "${ATTU_OVERRIDE_PORT:-8000}:3000"
|
- "${ATTU_OVERRIDE_PORT:-8000}:3000"
|
||||||
|
depends_on:
|
||||||
|
milvus-standalone-embed:
|
||||||
|
condition: service_healthy
|
||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
@@ -61,6 +64,12 @@ services:
|
|||||||
reservations:
|
reservations:
|
||||||
cpus: ${ATTU_CPU_RESERVATION:-0.1}
|
cpus: ${ATTU_CPU_RESERVATION:-0.1}
|
||||||
memory: ${ATTU_MEMORY_RESERVATION:-128M}
|
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:
|
volumes:
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
# Component versions
|
# Component versions
|
||||||
ETCD_VERSION=v3.5.18
|
ETCD_VERSION=v3.5.18
|
||||||
MINIO_VERSION=RELEASE.2024-12-18T13-15-44Z
|
MINIO_VERSION=RELEASE.2024-12-18T13-15-44Z
|
||||||
MILVUS_VERSION=v2.6.2
|
MILVUS_VERSION=v2.6.7
|
||||||
ATTU_VERSION=v2.6.0
|
ATTU_VERSION=v2.6.4
|
||||||
|
|
||||||
# MinIO configuration
|
# MinIO configuration
|
||||||
MINIO_ACCESS_KEY=minioadmin
|
MINIO_ROOT_USER=minioadmin
|
||||||
MINIO_SECRET_KEY=minioadmin
|
MINIO_ROOT_PASSWORD=minioadmin
|
||||||
MINIO_PORT_OVERRIDE_API=9000
|
MINIO_PORT_OVERRIDE_API=9000
|
||||||
MINIO_PORT_OVERRIDE_WEBUI=9001
|
MINIO_PORT_OVERRIDE_WEBUI=9001
|
||||||
|
|
||||||
|
|||||||
@@ -19,15 +19,15 @@ If you need authentication, please visit the [official documentation](https://mi
|
|||||||
|
|
||||||
- `ETCD_VERSION`: The version of the etcd image, default is `v3.5.18`.
|
- `ETCD_VERSION`: The version of the etcd image, default is `v3.5.18`.
|
||||||
- `MINIO_VERSION`: The version of the Minio image, default is `RELEASE.2024-12-18T13-15-44Z`.
|
- `MINIO_VERSION`: The version of the Minio image, default is `RELEASE.2024-12-18T13-15-44Z`.
|
||||||
- `MILVUS_VERSION`: The version of the Milvus image, default is `v2.6.2`.
|
- `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.0`.
|
- `ATTU_VERSION`: The version of the Attu image, default is `v2.6.4`.
|
||||||
- `MINIO_ACCESS_KEY`: The access key for Minio, default is `minioadmin`.
|
- `MINIO_ROOT_USER`: The root user for Minio, default is `minioadmin`.
|
||||||
- `MINIO_SECRET_KEY`: The secret key for Minio, default is `minioadmin`.
|
- `MINIO_ROOT_PASSWORD`: The root password for Minio, default is `minioadmin`.
|
||||||
- `MINIO_PORT_OVERRIDE_API`: The host port for the Minio API, default is `9000`.
|
- `MINIO_PORT_OVERRIDE_API`: The host port for the Minio API, default is `9000`.
|
||||||
- `MINIO_PORT_OVERRIDE_WEBUI`: The host port for the Minio Web UI, default is `9001`.
|
- `MINIO_PORT_OVERRIDE_WEBUI`: The host port for the Minio Web UI, default is `9001`.
|
||||||
- `MILVUS_PORT_OVERRIDE_HTTP`: The host port for the Milvus HTTP service, default is `19530`.
|
- `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_WEBUI`: The host port for the Milvus Web UI, default is `9091`.
|
||||||
- `ATTU_PORT`: The host port for the Attu service, default is `8000`.
|
- `ATTU_PORT_OVERRIDE`: The host port for the Attu service, default is `8000`.
|
||||||
|
|
||||||
## Volumes
|
## Volumes
|
||||||
|
|
||||||
|
|||||||
@@ -19,15 +19,15 @@ Milvus 是一个开源的向量数据库,专为处理大规模向量数据而
|
|||||||
|
|
||||||
- `ETCD_VERSION`: etcd 镜像的版本,默认为 `v3.5.18`。
|
- `ETCD_VERSION`: etcd 镜像的版本,默认为 `v3.5.18`。
|
||||||
- `MINIO_VERSION`: Minio 镜像的版本,默认为 `RELEASE.2024-12-18T13-15-44Z`。
|
- `MINIO_VERSION`: Minio 镜像的版本,默认为 `RELEASE.2024-12-18T13-15-44Z`。
|
||||||
- `MILVUS_VERSION`: Milvus 镜像的版本,默认为 `v2.6.2`。
|
- `MILVUS_VERSION`: Milvus 镜像的版本,默认为 `v2.6.7`。
|
||||||
- `ATTU_VERSION`: Attu 镜像的版本,默认为 `v2.6.0`。
|
- `ATTU_VERSION`: Attu 镜像的版本,默认为 `v2.6.4`。
|
||||||
- `MINIO_ACCESS_KEY`: Minio 的访问密钥,默认为 `minioadmin`。
|
- `MINIO_ROOT_USER`: Minio 的根用户,默认为 `minioadmin`。
|
||||||
- `MINIO_SECRET_KEY`: Minio 的秘密密钥,默认为 `minioadmin`。
|
- `MINIO_ROOT_PASSWORD`: Minio 的根密码,默认为 `minioadmin`。
|
||||||
- `MINIO_PORT_OVERRIDE_API`: Minio API 的主机端口,默认为 `9000`。
|
- `MINIO_PORT_OVERRIDE_API`: Minio API 的主机端口,默认为 `9000`。
|
||||||
- `MINIO_PORT_OVERRIDE_WEBUI`: Minio Web UI 的主机端口,默认为 `9001`。
|
- `MINIO_PORT_OVERRIDE_WEBUI`: Minio Web UI 的主机端口,默认为 `9001`。
|
||||||
- `MILVUS_PORT_OVERRIDE_HTTP`: Milvus HTTP 服务的主机端口,默认为 `19530`。
|
- `MILVUS_PORT_OVERRIDE_HTTP`: Milvus HTTP 服务的主机端口,默认为 `19530`。
|
||||||
- `MILVUS_PORT_OVERRIDE_WEBUI`: Milvus Web UI 的主机端口,默认为 `9091`。
|
- `MILVUS_PORT_OVERRIDE_WEBUI`: Milvus Web UI 的主机端口,默认为 `9091`。
|
||||||
- `ATTU_PORT`: Attu 服务的主机端口,默认为 `8000`。
|
- `ATTU_PORT_OVERRIDE`: Attu 服务的主机端口,默认为 `8000`。
|
||||||
|
|
||||||
## 卷
|
## 卷
|
||||||
|
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ services:
|
|||||||
|
|
||||||
milvus-standalone:
|
milvus-standalone:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
image: ${GLOBAL_REGISTRY:-}milvusdb/milvus:${MILVUS_VERSION:-v2.6.3}
|
image: ${GLOBAL_REGISTRY:-}milvusdb/milvus:${MILVUS_VERSION:-v2.6.7}
|
||||||
command: ["milvus", "run", "standalone"]
|
command: ["milvus", "run", "standalone"]
|
||||||
security_opt:
|
security_opt:
|
||||||
- seccomp:unconfined
|
- seccomp:unconfined
|
||||||
@@ -100,7 +100,7 @@ services:
|
|||||||
|
|
||||||
attu:
|
attu:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
image: ${GLOBAL_REGISTRY:-}zilliz/attu:${ATTU_VERSION:-v2.6.1}
|
image: ${GLOBAL_REGISTRY:-}zilliz/attu:${ATTU_VERSION:-v2.6.4}
|
||||||
profiles:
|
profiles:
|
||||||
- attu
|
- attu
|
||||||
environment:
|
environment:
|
||||||
@@ -129,3 +129,4 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
etcd_data:
|
etcd_data:
|
||||||
minio_data:
|
minio_data:
|
||||||
|
milvus_data:
|
||||||
|
|||||||
@@ -14,6 +14,8 @@ services:
|
|||||||
pulsar:
|
pulsar:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
image: ${GLOBAL_REGISTRY:-}apachepulsar/pulsar:${PULSAR_VERSION:-4.0.7}
|
image: ${GLOBAL_REGISTRY:-}apachepulsar/pulsar:${PULSAR_VERSION:-4.0.7}
|
||||||
|
profiles:
|
||||||
|
- ${COMPOSE_PROFILES:-}
|
||||||
hostname: pulsar-standalone
|
hostname: pulsar-standalone
|
||||||
ports:
|
ports:
|
||||||
- "${PULSAR_BROKER_PORT_OVERRIDE:-6650}:6650"
|
- "${PULSAR_BROKER_PORT_OVERRIDE:-6650}:6650"
|
||||||
|
|||||||
Reference in New Issue
Block a user