如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
本Docker镜像提供了一种声明式方式来描述和管理JSON数据管道,旨在简化JSON格式数据的处理流程配置。通过预定义的声明式语法,用户可快速定义数据转换、过滤、聚合及流转规则,无需编写复杂代码即可实现灵活的数据处理逻辑,适用于各类JSON数据处理场景。
1. 拉取镜像
bashdocker pull [镜像仓库地址]/json-data-pipeline:latest
2. 基本运行命令
bashdocker run -d \ --name json-pipeline \ -v /path/to/pipelines:/app/pipelines \ # 挂载管道配置文件目录 -e LOG_LEVEL=info \ # 设置日志级别 [镜像仓库地址]/json-data-pipeline:latest
环境变量
| 环境变量名 | 说明 | 默认值 |
|---|---|---|
LOG_LEVEL | 日志级别(debug/info/warn/error) | info |
PIPELINE_DIR | 管道配置文件目录路径 | /app/pipelines |
POLL_INTERVAL | 配置文件变更检查间隔(秒) | 30 |
MAX_RETRIES | 步骤执行失败最大重试次数 | 3 |
管道配置文件格式
管道配置文件为YAML格式,放置于PIPELINE_DIR目录下,示例:
yaml# example-pipeline.yaml name: "user-data-transform" description: "转换用户数据格式并输出至API" steps: - name: "input" type: "http" config: url: "https://api.example.com/users" method: "GET" - name: "filter-active-users" type: "filter" input: "input" config: condition: "$.status == 'active'" - name: "transform-format" type: "transform" input: "filter-active-users" config: mapping: user_id: "$.id" username: "$.name" email: "$.contact.email" join_date: "$.created_at | strftime('%Y-%m-%d')" - name: "output" type: "http" input: "transform-format" config: url: "https://datawarehouse.example.com/users" method: "POST" headers: Content-Type: "application/json"
/local/pipelines/simple-transform.yaml:yamlname: "simple-json-transform" steps: - name: "input" type: "inline" config: data: '[{"id": 1, "name": "Alice", "age": 30}, {"id": 2, "name": "Bob", "age": 25}]' - name: "filter-adults" type: "filter" input: "input" config: condition: "$.age >= 18" - name: "format-output" type: "transform" input: "filter-adults" config: mapping: user_id: "$.id" full_name: "$.name" is_adult: "true" - name: "output-to-stdout" type: "stdout" input: "format-output"
bashdocker run -it \ --name demo-pipeline \ -v $(pwd)/pipelines:/app/pipelines \ [镜像仓库地址]/json-data-pipeline:latest
json[{"user_id": 1, "full_name": "Alice", "is_adult": true}, {"user_id": 2, "full_name": "Bob", "is_adult": true}]
.yaml或.yml结尾/app/functions目录您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务