chore: update mineru
This commit is contained in:
@@ -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 |
|
||||
|
||||
+1
-1
@@ -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 |
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# MinerU Docker image
|
||||
MINERU_VERSION=3.0.1
|
||||
MINERU_VERSION=3.1.0
|
||||
|
||||
# Port configurations
|
||||
MINERU_PORT_OVERRIDE_VLLM=30000
|
||||
|
||||
@@ -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`.
|
||||
|
||||
@@ -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`。
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user