
如果你使用 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的`arm64v8`架构构建版本的"每架构"仓库——更多信息,请参见官方镜像文档中的"除amd64之外的架构?"[https://github.com/docker-library/official-images#architectures-other-than-amd64]和官方镜像FAQ中的"Git中的镜像源已更改,该怎么办?"[https://github.com/orientechnologies/orientdb-docker/blob/9bfd68a64234423574e38a7a1f5e6a2098191f6a/release/3.2.x/3.2.45/Dockerfile]。
维护者:
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
问题提交处:
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/
镜像制品详情:
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数据库管理系统,将图数据库的强大功能与文档数据库的灵活性结合到一个可扩展、高性能的 operational 数据库中。
当OrientDB启动时,会要求输入root密码。root用户能够管理OrientDB服务器:创建新数据库、管理用户和角色。可以通过环境变量向容器传递root密码:
console$ docker run -d --name orientdb -p 2424:2424 -p 2480:2480 -e ORIENTDB_ROOT_PASSWORD=rootpwd arm64v8/orientdb
Studio可通过[***]
此Docker镜像包含OrientDB安装及基本配置。如果需要提供自己的配置文件夹以覆盖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 \ arm64v8/orientdb
注意:不要将空的配置文件夹作为卷挂载,因为OrientDB将以极简配置启动。
OrientDB镜像包含完整安装,因此可以运行控制台:
console$ docker run --rm -it arm64v8/orientdb /orientdb/bin/console.sh
甚至ETL工具:
console$ docker run --rm -it -v <config_path>:/orientdb/config arm64v8/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 \ arm64v8/orientdb /orientdb/bin/server.sh -Ddistributed=true
有关更多配置选项,请参阅在线文档的配置部分。
可以通过命令行传递堆大小等环境参数:
console$ docker run -d --name orientdb -p 2424:2424 -p 2480:2480 \ -e ORIENTDB_ROOT_PASSWORD=rootpwd \ arm64v8/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中。
对于任何预构建镜像的使用,镜像用户有责任确保对该镜像的任何使用都符合其中包含的所有软件的相关许可证。
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务