
如果你使用 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的`amd64`架构构建的"per-architecture"仓库——更多信息,请参见官方镜像文档中的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
https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile
https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-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 amd64/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 \ amd64/orientdb
注意:不要将空的配置文件夹作为卷提供,因为OrientDB将以非常基本的配置启动。
OrientDB镜像包含完整的安装,因此可以运行控制台:
console$ docker run --rm -it amd64/orientdb /orientdb/bin/console.sh
甚至ETL工具:
console$ docker run --rm -it -v <config_path>:/orientdb/config amd64/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 \ amd64/orientdb /orientdb/bin/server.sh -Ddistributed=true
有关更多配置选项,请参阅在线文档的配置部分。
可以通过命令行传递堆大小等环境参数:
console$ docker run -d --name orientdb -p 2424:2424 -p 2480:2480 \ -e ORIENTDB_ROOT_PASSWORD=rootpwd \ amd64/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中。
对于任何预构建镜像的使用,镜像用户有责任确保对本镜像的任何使用符合其中包含的所有软件的相关许可证。===SHORT_DESC=== OrientDB是一个多模型开源NoSQL数据库管理系统,结合了图数据库和文档数据库的功能。 ===FULL_DESC=== 注:这是https://hub.docker.com/_/orientdb的`amd64`架构构建版本——更多信息,请参见官方镜像文档中的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
https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile
https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-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 amd64/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 \ amd64/orientdb
注意:不要将空的配置文件夹作为卷提供,因为OrientDB将以非常基本的配置启动。
OrientDB镜像包含完整的安装,因此可以运行控制台:
console$ docker run --rm -it amd64/orientdb /orientdb/bin/console.sh
甚至ETL工具:
console$ docker run --rm -it -v <config_path>:/orientdb/config amd64/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 \ amd64/orientdb /orientdb/bin/server.sh -Ddistributed=true
有关更多配置选项,请参阅在线文档的配置部分。
可以通过命令行传递堆大小等环境参数:
console$ docker run -d --name orientdb -p 2424:2424 -p 2480:2480 \ -e ORIENTDB_ROOT_PASSWORD=rootpwd \ amd64/orientdb /orientdb/bin/server.sh -Xmx8g
查看本镜像中包含的软件的https://github.com/orientechnologies/orientdb/blob/master/license.txt。
与所有Docker镜像一样,这些镜像可能还包含其他软件,这些软件可能受其他许可证(如基础发行版中的Bash等,以及包含的主要软件的任何直接或间接依赖项)的约束。
一些能够自动检测到的额外许可证信息可能位于[repo-info仓库
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务