
如果你使用 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 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
The seekdb Docker image, available on https://hub.docker.com/r/oceanbase/seekdb, quay.io and ghcr.io, is designed for users to quickly set up a SeekDB environment for testing purposes.
Before deploying seekdb, ensure that the following requirements are met:
To start a SeekDB instance, use the following commands:
bashdocker run -d -p 2881:2881 -p 2886:2886 oceanbase/seekdb # Execute init SQL scripts after bootstrap, you need to mount the directory containing the init scripts then specify the directory in container via environment variable INIT_SCRIPTS_PATH. # Please do not change root user's password in SQL scripts. If you'd like to change root user's password, use environment variable ROOT_PASSWORD. docker run -d -p 2881:2881 -p 2886:2886 -v {init_sql_folder_path}:/root/boot/init.d -e INIT_SCRIPTS_PATH=/root/boot/init.d oceanbase/seekdb
Below is a table of supported environment variables for the image:
| Variable name | Description |
|---|---|
| ROOT_PASSWORD | The password of user root |
| CPU_COUNT | The value of cpu_count, e.g. 4. |
| MEMORY_LIMIT | The value of memory_limit, e.g. 2G. |
| LOG_DISK_SIZE | The value of log_disk_size, e.g. 2G. |
| DATAFILE_SIZE | The value of datafile_size, e.g. 2G. |
| DATAFILE_NEXT | The value of datafile_next, e.g. 2G. |
| DATAFILE_MAXSIZE | The value of datafile_maxsize, e.g. 50G. |
| INIT_SCRIPTS_PATH | The path in the container containing the init scripts. |
| SEEKDB_DATABASE | The name of the database to be created at startup. |
If you'd like to modify other SeekDB parameters, you can do mount a configuration file into /etc/oceanbase/seekdb.cnf in the container, the default configuration file is as follows.
datafile_size=2G datafile_next=2G datafile_maxsize=50G cpu_count=4 memory_limit=2G log_disk_size=2G # config the parameter in the following format # key=value
The start command should be like this.
# **Note:** If you decide to use a configuration file, please don't specify the resource related environment variables. docker run -d -p 2881:2881 -p 2886:2886 -v {config_file}:/etc/oceanbase/seekdb.cnf oceanbase/seekdb
Seekdb deploys in directory /var/lib/oceanbase, if you'd like to persist the data on the host server, please mount an empty directory on the host server to this path.
Note: If you run seekdb container on windows, please use docker volume instead of directory on the host to ensure it works properly.
# On Linux or MacOS mkdir -p seekdb docker run -d -p 2881:2881 -p 2886:2886 -v $PWD/seekdb:/var/lib/oceanbase --name seekdb oceanbase/seekdb # On Windows docker volume create seekdb docker run -d -p 2881:2881 -p 2886:2886 -v seekdb:/var/lib/oceanbase --name seekdb oceanbase/seekdb
mysql -h 127.0.0.1 -P 2881 -u root -p # Connect with the root account
The container provides a user-friendly web interface, you can access it in the browser http://${server_ip}:2886, the login password is the same as user root's password. If ROOT_PASSWORD is not set, leave the password field blank.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务