
如果你使用 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 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
注意:这是 https://hub.docker.com/_/orientdb 的 arm32v7 架构构建的“按架构”仓库——更多信息,请参见官方镜像文档中的“https://github.com/docker-library/official-images#architectures-other-than-amd64”以及官方镜像 FAQ 中的“https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what”。
维护者:
https://github.com/orientechnologies/orientdb-docker
获取帮助:
https://dockr.ly/comm-slack、Server Fault、https://unix.stackexchange.com/help/on-topic 或 https://stackoverflow.com/help/on-topic
Dockerfile 链接https://github.com/orientechnologies/orientdb-docker/blob/9bfd68a64234423574e38a7a1f5e6a2098191f6a/release/3.2.x/3.2.45/Dockerfile
https://github.com/orientechnologies/orientdb-docker/blob/9bfd68a64234423574e38a7a1f5e6a2098191f6a/release/3.2.x/3.2.45-tp3/Dockerfile
提交 issues:
https://github.com/orientechnologies/orientdb-docker/issues?q=
支持的架构:(https://github.com/docker-library/official-images#architectures-other-than-amd64)
https://hub.docker.com/r/amd64/orientdb/、https://hub.docker.com/r/arm32v7/orientdb/、https://hub.docker.com/r/arm64v8/orientdb/
镜像 artifact 详情:
https://github.com/docker-library/repo-info/blob/master/repos/orientdb(https://github.com/docker-library/repo-info/commits/master/repos/orientdb)
(镜像元数据、传输大小等)
镜像更新:
https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Forientdb
https://github.com/docker-library/official-images/blob/master/library/orientdb(https://github.com/docker-library/official-images/commits/master/library/orientdb)
本描述的来源:
https://github.com/docker-library/docs/tree/master/orientdb(https://github.com/docker-library/docs/commits/master/orientdb)
OrientDB 是首个多模型开源 NoSQL 数据库管理系统(DBMS),将图数据库的强大功能与文档数据库的灵活性结合,提供可扩展、高性能的 operational 数据库。
OrientDB 启动时会要求输入 root 密码。root 用户可管理 OrientDB 服务器:创建新数据库、管理用户和角色。可通过环境变量向容器传递 root 密码:
console$ docker run -d --name orientdb -p 2424:2424 -p 2480:2480 -e ORIENTDB_ROOT_PASSWORD=rootpwd arm32v7/orientdb
Studio 可通过 [***]
本 Docker 镜像包含 OrientDB 安装及基础配置。若需提供自定义配置文件夹以覆盖容器中默认的配置,只需为配置文件夹挂载持久卷。提供配置文件夹可与 Ansible、Chef 或 Puppet 等软件配置工具集成。
数据库文件夹同理,若仅存储在运行中的容器本地,容器停止或删除后数据会丢失。也可使用专用数据容器的卷。
console$ docker run -d --name orientdb -p 2424:2424 -p 2480:2480 \ -v <config_path>:/orientdb/config \ -v <databases_path>:/orientdb/databases \ -v <backup_path>:/orientdb/backup \ -e ORIENTDB_ROOT_PASSWORD=rootpwd \ arm32v7/orientdb
注意:不要将空配置文件夹作为卷挂载,否则 OrientDB 将以极简配置启动。
OrientDB 镜像包含完整安装,因此可运行 console:
console$ docker run --rm -it arm32v7/orientdb /orientdb/bin/console.sh
或运行 etl:
console$ docker run --rm -it -v <config_path>:/orientdb/config arm32v7/orientdb /orientdb/bin/oetl.sh ../config/oetl-config.json
启动时可使用 -D 选项指定任何配置设置。例如,启动分布式配置的 OrientDB:
console$ docker run -d --name orientdb -p 2424:2424 -p 2480:2480 \ -v <config_path>:/orientdb/config \ -v <databases_path>:/orientdb/databases \ -v <backup_path>:/orientdb/backup \ -e ORIENTDB_ROOT_PASSWORD=rootpwd \ -e ORIENTDB_NODE_NAME=odb1 \ arm32v7/orientdb /orientdb/bin/server.sh -Ddistributed=true
更多配置选项请参见在线文档的 配置 部分。
可通过命令行传递堆大小等环境参数:
console$ docker run -d --name orientdb -p 2424:2424 -p 2480:2480 \ -e ORIENTDB_ROOT_PASSWORD=rootpwd \ arm32v7/orientdb /orientdb/bin/server.sh -Xmx8g
查看本镜像中包含软件的 https://github.com/orientechnologies/orientdb/blob/master/license.txt。
与所有 Docker 镜像一样,本镜像可能还包含其他软件,这些软件可能使用其他许可(如基础发行版中的 Bash 等,以及主要软件的任何直接或间接依赖项)。
部分可自动检测的附加许可信息可能位于 https://github.com/docker-library/repo-info/tree/master/repos/orientdb。
对于任何预构建镜像的使用,镜像用户有责任确保对本镜像的任何使用符合其中包含的所有软件的相关许可。
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务