From 3483dd80f081b062cda27ac44b0db1b6d4b91e14 Mon Sep 17 00:00:00 2001 From: Sun-ZhenXing <1006925066@qq.com> Date: Sun, 19 Apr 2026 14:12:11 +0800 Subject: [PATCH] chore: update mineru --- README.md | 2 +- README.zh.md | 2 +- apps/opik/.env.example | 2 +- apps/opik/docker-compose.yaml | 11 ++++++----- builds/mineru/.env.example | 2 +- builds/mineru/README.md | 2 +- builds/mineru/README.zh.md | 2 +- builds/mineru/docker-compose.yaml | 2 +- src/signoz/README.md | 1 - 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 245d8e0..0edead1 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ These services require building custom Docker images from source. | [goose](./builds/goose) | 1.18.0 | | [IOPaint](./builds/io-paint) | 1.6.0 | | [K3s inside DinD](./builds/k3s-inside-dind) | 0.2.2 | -| [MinerU vLLM](./builds/mineru) | 3.0.1 | +| [MinerU vLLM](./builds/mineru) | 3.1.0 | | [Multica](./builds/multica) | v0.1.32 | | [OpenFang](./builds/openfang) | 0.1.0 | | [Paperclip](./builds/paperclip) | main | diff --git a/README.zh.md b/README.zh.md index 388a59e..cbf3c0f 100644 --- a/README.zh.md +++ b/README.zh.md @@ -37,7 +37,7 @@ docker compose exec redis redis-cli ping | [goose](./builds/goose) | 1.18.0 | | [IOPaint](./builds/io-paint) | 1.6.0 | | [K3s inside DinD](./builds/k3s-inside-dind) | 0.2.2 | -| [MinerU vLLM](./builds/mineru) | 3.0.1 | +| [MinerU vLLM](./builds/mineru) | 3.1.0 | | [Multica](./builds/multica) | v0.1.32 | | [OpenFang](./builds/openfang) | 0.1.0 | | [Paperclip](./builds/paperclip) | main | diff --git a/apps/opik/.env.example b/apps/opik/.env.example index f9f655a..bbfa61b 100644 --- a/apps/opik/.env.example +++ b/apps/opik/.env.example @@ -3,7 +3,7 @@ GLOBAL_REGISTRY= TZ=UTC # Opik Version -OPIK_VERSION=1.10.23 +OPIK_VERSION=1.11.9 # Opik Frontend Port OPIK_PORT_OVERRIDE=5173 diff --git a/apps/opik/docker-compose.yaml b/apps/opik/docker-compose.yaml index 6c55b24..8733bd2 100644 --- a/apps/opik/docker-compose.yaml +++ b/apps/opik/docker-compose.yaml @@ -201,7 +201,7 @@ services: backend: <<: *defaults - image: ${GLOBAL_REGISTRY:-}ghcr.io/comet-ml/opik/opik-backend:${OPIK_VERSION:-1.10.23} + image: ${GLOBAL_REGISTRY:-}ghcr.io/comet-ml/opik/opik-backend:${OPIK_VERSION:-1.11.9} command: [bash, -c, './run_db_migrations.sh && ./entrypoint.sh'] environment: TZ: ${TZ:-UTC} @@ -231,6 +231,7 @@ services: TOGGLE_OPIK_AI_ENABLED: ${TOGGLE_OPIK_AI_ENABLED:-false} TOGGLE_GUARDRAILS_ENABLED: ${TOGGLE_GUARDRAILS_ENABLED:-false} TOGGLE_WELCOME_WIZARD_ENABLED: ${TOGGLE_WELCOME_WIZARD_ENABLED:-true} + TOGGLE_RUNNERS_ENABLED: ${TOGGLE_RUNNERS_ENABLED:-false} CORS: ${CORS:-false} ATTACHMENTS_STRIP_MIN_SIZE: ${ATTACHMENTS_STRIP_MIN_SIZE:-256000} JACKSON_MAX_STRING_LENGTH: ${JACKSON_MAX_STRING_LENGTH:-104857600} @@ -264,19 +265,19 @@ services: python-backend: <<: *defaults - image: ${GLOBAL_REGISTRY:-}ghcr.io/comet-ml/opik/opik-python-backend:${OPIK_VERSION:-1.10.23} + image: ${GLOBAL_REGISTRY:-}ghcr.io/comet-ml/opik/opik-python-backend:${OPIK_VERSION:-1.11.9} privileged: true environment: TZ: ${TZ:-UTC} OPIK_OTEL_SDK_ENABLED: 'false' - PYTHON_CODE_EXECUTOR_IMAGE_TAG: ${OPIK_VERSION:-1.10.23} + PYTHON_CODE_EXECUTOR_IMAGE_TAG: ${OPIK_VERSION:-1.11.9} PYTHON_CODE_EXECUTOR_STRATEGY: ${PYTHON_CODE_EXECUTOR_STRATEGY:-process} PYTHON_CODE_EXECUTOR_CONTAINERS_NUM: ${PYTHON_CODE_EXECUTOR_CONTAINERS_NUM:-5} PYTHON_CODE_EXECUTOR_EXEC_TIMEOUT_IN_SECS: ${PYTHON_CODE_EXECUTOR_EXEC_TIMEOUT_IN_SECS:-3} PYTHON_CODE_EXECUTOR_ALLOW_NETWORK: ${PYTHON_CODE_EXECUTOR_ALLOW_NETWORK:-false} PYTHON_CODE_EXECUTOR_CPU_SHARES: ${PYTHON_CODE_EXECUTOR_CPU_SHARES:-512} PYTHON_CODE_EXECUTOR_MEM_LIMIT: ${PYTHON_CODE_EXECUTOR_MEM_LIMIT:-256m} - OPIK_VERSION: ${OPIK_VERSION:-1.10.23} + OPIK_VERSION: ${OPIK_VERSION:-1.11.9} OPIK_REVERSE_PROXY_URL: http://frontend:5173/api PYTHON_BACKEND_PORT: ${PYTHON_BACKEND_PORT:-8000} OPENAI_API_KEY: ${OPENAI_API_KEY:-} @@ -313,7 +314,7 @@ services: frontend: <<: *defaults - image: ${GLOBAL_REGISTRY:-}ghcr.io/comet-ml/opik/opik-frontend:${OPIK_VERSION:-1.10.23} + image: ${GLOBAL_REGISTRY:-}ghcr.io/comet-ml/opik/opik-frontend:${OPIK_VERSION:-1.11.9} ports: - '${OPIK_PORT_OVERRIDE:-5173}:80' environment: diff --git a/builds/mineru/.env.example b/builds/mineru/.env.example index eb1165d..ff14d8d 100644 --- a/builds/mineru/.env.example +++ b/builds/mineru/.env.example @@ -1,5 +1,5 @@ # MinerU Docker image -MINERU_VERSION=3.0.1 +MINERU_VERSION=3.1.0 # Port configurations MINERU_PORT_OVERRIDE_VLLM=30000 diff --git a/builds/mineru/README.md b/builds/mineru/README.md index 822214b..57aa8fd 100644 --- a/builds/mineru/README.md +++ b/builds/mineru/README.md @@ -39,7 +39,7 @@ mineru -p demo.pdf -o ./output -b vlm-http-client -u http://localhost:30000 ## Configuration -- `MINERU_VERSION`: The version for MinerU, default is `3.0.1`. +- `MINERU_VERSION`: The version for MinerU, default is `3.1.0`. - `MINERU_PORT_OVERRIDE_VLLM`: The host port for the VLLM server, default is `30000`. - `MINERU_PORT_OVERRIDE_API`: The host port for the API service, default is `8000`. - `MINERU_PORT_OVERRIDE_GRADIO`: The host port for the Gradio WebUI, default is `7860`. diff --git a/builds/mineru/README.zh.md b/builds/mineru/README.zh.md index fd7918d..74c4de2 100644 --- a/builds/mineru/README.zh.md +++ b/builds/mineru/README.zh.md @@ -39,7 +39,7 @@ mineru -p demo.pdf -o ./output -b vlm-http-client -u http://localhost:30000 ## 配置 -- `MINERU_VERSION`: MinerU 的 Docker 镜像版本,默认为 `3.0.1`。 +- `MINERU_VERSION`: MinerU 的 Docker 镜像版本,默认为 `3.1.0`。 - `MINERU_PORT_OVERRIDE_VLLM`: VLLM 服务器的主机端口,默认为 `30000`。 - `MINERU_PORT_OVERRIDE_API`: API 服务的主机端口,默认为 `8000`。 - `MINERU_PORT_OVERRIDE_GRADIO`: Gradio WebUI 的主机端口,默认为 `7860`。 diff --git a/builds/mineru/docker-compose.yaml b/builds/mineru/docker-compose.yaml index ff2050e..5795c0a 100644 --- a/builds/mineru/docker-compose.yaml +++ b/builds/mineru/docker-compose.yaml @@ -8,7 +8,7 @@ x-defaults: &defaults x-mineru-vllm: &mineru-vllm <<: *defaults - image: ${GLOBAL_REGISTRY:-}alexsuntop/mineru:${MINERU_VERSION:-3.0.1} + image: ${GLOBAL_REGISTRY:-}alexsuntop/mineru:${MINERU_VERSION:-3.1.0} build: context: . dockerfile: ${MINERU_DOCKERFILE_PATH:-Dockerfile} diff --git a/src/signoz/README.md b/src/signoz/README.md index 66f76d2..5a1c3cf 100644 --- a/src/signoz/README.md +++ b/src/signoz/README.md @@ -92,7 +92,6 @@ Startup order: 3. `signoz-telemetrystore-migrator` runs schema migrations 4. `signoz` and `otel-collector` start - ## Data Persistence Data is persisted in Docker named volumes: