专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题轩辕镜像免费版
其他
关于我们网站地图
热门搜索:
mariadb

bitnami/mariadb

自动构建
Bitnami Secure Images(VMware Tanzu)

Bitnami Secure Image for MariaDB是一款针对MariaDB数据库开发的预配置安全镜像,它集成自动化安全补丁、合规性检查工具及加固配置,可快速在容器、虚拟机或云平台等环境中部署,提供持续更新与维护支持,有效降低部署风险,确保数据库运行的稳定性与安全性,满足企业级应用对数据保护的严格需求。

208 次收藏下载次数: 0状态:自动构建维护者:Bitnami Secure Images(VMware Tanzu)仓库类型:镜像最近更新:1 天前
轩辕镜像,加速的不只是镜像。点击查看
DockerHub 官方简介
轩辕镜像中文简介
标签下载
镜像标签列表与下载命令
轩辕镜像,加速的不只是镜像。点击查看

Bitnami Secure Image for MariaDB

MariaDB is an open source, community-developed SQL database server that is widely in use around the world due to its enterprise features, flexibility, and collaboration with leading tech firms.

Overview of MariaDB Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.

TL;DR

console
docker run --name mariadb -e ALLOW_EMPTY_PASSWORD=yes REGISTRY_NAME/bitnami/mariadb:latest

Warning: These quick setups are only intended for development environments. You are encouraged to change the insecure default credentials and check out the available configuration options in the Configuration section for a more secure deployment.

Choosing between the Standard and Minimal image

This asset is available in two flavors: Standard and Minimal; designed to address different use cases and operational needs.

Standard images

The standard images are full-featured, production-ready containers built on top of secure base operating systems. They include:

  • The complete runtime and commonly used system tools.
  • A familiar Linux environment (shell, package manager, debugging utilities).
  • Full compatibility with most CI/CD pipelines and existing workloads.

Recommended for:

  • Development and testing environments.
  • Workloads requiring package installation or debugging tools.
  • Applications that depend on system utilities or shared libraries.

Minimal images

The minimal images are optimized, distroless-style containers derived from a stripped-down base. They only ship what’s strictly necessary to run the application; no shell, package manager, or extra libraries. They provide:

  • Smaller size: Faster pull and startup times.
  • Reduced *** surface: Fewer components and potential vulnerabilities.
  • Simpler maintenance: Fewer dependencies to patch or update.

Recommended for:

  • Production environments prioritizing performance and security.
  • Regulated or security-sensitive workloads
  • Containers built via multi-stage builds (e.g., Golang static binaries).

How to deploy MariaDB in Kubernetes?

Deploying Bitnami applications as Helm Charts is the easiest way to get started with our applications on Kubernetes. Read more about the installation in the https://github.com/bitnami/charts/tree/master/bitnami/mariadb.

Why use a non-root container?

Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers in our docs.

Supported tags and respective Dockerfile links

Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags in our documentation page.

Get this image

The recommended way to get the Bitnami MariaDB Docker Image is to pull the prebuilt image from the https://hub.docker.com/r/bitnami/mariadb.

console
docker pull REGISTRY_NAME/bitnami/mariadb:latest

To use a specific version, you can pull a versioned tag. You can view the https://hub.docker.com/r/bitnami/mariadb/tags/ in the Docker Hub Registry.

console
docker pull REGISTRY_NAME/bitnami/mariadb:[TAG]

If you wish, you can also build the image yourself by cloning the repository, changing to the directory containing the Dockerfile and executing the docker build command. Remember to replace the APP, VERSION and OPERATING-SYSTEM path placeholders in the example command below with the correct values.

console
git clone https://github.com/bitnami/containers.git
cd bitnami/APP/VERSION/OPERATING-SYSTEM
docker build -t REGISTRY_NAME/bitnami/APP:latest .

Using docker-compose.yaml

Please be aware this file has not undergone internal testing. Consequently, we advise its use exclusively for development or testing purposes. For production-ready deployments, we highly recommend utilizing its associated https://github.com/bitnami/charts/tree/main/bitnami/mariadb.

Persisting your database

If you remove the container all your data will be lost, and the next time you run the image the database will be reinitialized. To avoid this loss of data, you should mount a volume that will persist even after the container is removed.

For persistence you should mount a directory at the /bitnami/mariadb path. If the mounted directory is empty, it will be initialized on the first run.

NOTE As this is a non-root container, the mounted files and directories must have the proper permissions for the UID 1001.

Connecting to other containers

Using Docker container networking, a MariaDB server running inside a container can easily be accessed by your application containers.

Containers attached to the same network can communicate with each other using the container name as the hostname.

Configuration

The following section describes the supported environment variables

Environment variables

The following tables list the main variables you can set.

Customizable environment variables

NameDescriptionDefault Value
ALLOW_EMPTY_PASSWORDAllow MariaDB access without any password.no
MARIADB_AUTHENTICATION_PLUGINMariaDB authentication plugin to configure during the first initialization.nil
MARIADB_ROOT_USERMariaDB database root user.root
MARIADB_ROOT_PASSWORDMariaDB database root user password.nil
MARIADB_USERMariaDB database user to create during the first initialization.nil
MARIADB_PASSWORDPassword for the MariaDB database user to create during the first initialization.nil
MARIADB_DATABASEMariaDB database to create during the first initialization.nil
MARIADB_MASTER_HOSTAddress for the MariaDB master node.nil
MARIADB_MASTER_PORT_NUMBERPort number for the MariaDB master node.3306
MARIADB_MASTER_ROOT_USERMariaDB database root user of the master host.root
MARIADB_MASTER_ROOT_PASSWORDPassword for the MariaDB database root user of the the master host.nil
MARIADB_MASTER_DELAYMariaDB database replication delay.0
MARIADB_REPLICATION_USERMariaDB replication database user.nil
MARIADB_REPLICATION_PASSWORDPassword for the MariaDB replication database user.nil
MARIADB_PORT_NUMBERPort number to use for the MariaDB Server service.nil
MARIADB_REPLICATION_MODEMariaDB replication mode.nil
MARIADB_REPLICATION_SLAVE_DUMPMake a dump on master and update slave MariaDB databasefalse
MARIADB_EXTRA_FLAGSExtra flags to be passed to start the MariaDB Server.nil
MARIADB_INIT_SLEEP_TIMESleep time when waiting for MariaDB init configuration operations to finish.nil
MARIADB_CHARACTER_SETMariaDB collation to use.nil
MARIADB_COLLATEMariaDB collation to use.nil
MARIADB_BIND_ADDRESSMariaDB bind address.nil
MARIADB_SQL_MODEMariaDB Server SQL modes to enable.nil
MARIADB_UPGRADEMariaDB upgrade option.AUTO
MARIADB_SKIP_TEST_DBWhether to skip creating the test database.no
MARIADB_CLIENT_ENABLE_SSLWhether to force SSL for connections to the MariaDB database.no
MARIADB_CLIENT_SSL_CA_FILEPath to CA certificate to use for SSL connections to the MariaDB database server.nil
MARIADB_CLIENT_SSL_CERT_FILEPath to client public key certificate to use for SSL connections to the MariaDB database server.nil
MARIADB_CLIENT_SSL_KEY_FILEPath to client private key to use for SSL connections to the MariaDB database server.nil
MARIADB_CLIENT_EXTRA_FLAGSWhether to force SSL connections with the "mysql" CLI tool. Useful for applications that rely on the CLI instead of APIs.no
MARIADB_STARTUP_WAIT_RETRIESNumber of retries waiting for the database to be running.300
MARIADB_STARTUP_WAIT_SLEEP_TIMESleep time between retries waiting for the database to be running.2
MARIADB_ENABLE_SLOW_QUERYWhether to enable slow query logs.0
MARIADB_LONG_QUERY_TIMEHow much time, in seconds, defines a slow query.10.0

Read-only environment variables

NameDescriptionValue
DB_FLAVORSQL database flavor. Valid values: mariadb or mysql.mariadb
DB_BASE_DIRBase path for MariaDB files.${BITNAMI_ROOT_DIR}/mariadb
DB_VOLUME_DIRMariaDB directory for persisted files.${BITNAMI_VOLUME_DIR}/mariadb
DB_DATA_DIRMariaDB directory for data files.${DB_VOLUME_DIR}/data
DB_BIN_DIRMariaDB directory where executable binary files are located.${DB_BASE_DIR}/bin
DB_SBIN_DIRMariaDB directory where service binary files are located.${DB_BASE_DIR}/sbin
DB_CONF_DIRMariaDB configuration directory.${DB_BASE_DIR}/conf
DB_DEFAULT_CONF_DIRMariaDB default configuration directory.${DB_BASE_DIR}/conf.default
DB_LOGS_DIRMariaDB logs directory.${DB_BASE_DIR}/logs
DB_TMP_DIRMariaDB directory for temporary files.${DB_BASE_DIR}/tmp
DB_CONF_FILEMain MariaDB configuration file.${DB_CONF_DIR}/my.cnf
DB_PID_FILEMariaDB PID file.${DB_TMP_DIR}/mysqld.pid
DB_SOCKET_FILEMariaDB Server socket file.${DB_TMP_DIR}/mysql.sock
DB_DAEMON_USERUsers that will execute the MariaDB Server process.mysql
DB_DAEMON_GROUPGroup that will execute the MariaDB Server process.mysql
MARIADB_DEFAULT_PORT_NUMBERDefault port number to use for the MariaDB Server service.3306
MARIADB_DEFAULT_CHARACTER_SETDefault MariaDB character set.utf8mb4
MARIADB_DEFAULT_BIND_ADDRESSDefault MariaDB bind address.0.0.0.0

Initializing a new instance

When the container is executed for the first time, it will execute the files with extensions .sh, .sql and .sql.gz located at /docker-entrypoint-startdb.d.

In order to have your custom files inside the docker image you can mount them as a volume.

Take into account those scripts are treated differently depending on the extension. While the .sh scripts are executed in all the nodes; the .sql and .sql.gz scripts are only executed in the master nodes. The reason behind this differentiation is that the .sh scripts allow adding conditions to determine what is the node running the script, while these conditions can't be set using .sql nor sql.gz files. This way it is possible to cover different use cases depending on their needs.

NOTE If you are importing large databases, it is recommended to import them as .sql instead of .sql.gz, as the latter one needs to be decompressed on the fly and not allowing for additional optimizations to import large files.

Passing extra command-line flags to mysqld startup

Passing extra command-line flags to the mysqld service command is possible through the following env var:

  • MARIADB_EXTRA_FLAGS: Flags to be appended to the startup command. No defaults

Setting character set and collation

It is possible to configure the character set and collation used by default by the database with the following environment variables:

  • MARIADB_CHARACTER_SET: The default character set to use. Default: utf8
  • MARIADB_COLLATE: The default collation to use. Default: utf8_general_ci

Setting the root password on first run

The root user and password can easily be setup with the Bitnami MariaDB Docker image using the following environment variables:

  • MARIADB_ROOT_USER: The database admin user. Defaults to root.
  • MARIADB_ROOT_PASSWORD: The database admin user password. No defaults.
  • MARIADB_ROOT_PASSWORD_FILE: Path to a file that contains the admin user password. This will override the value specified in MARIADB_ROOT_PASSWORD. No defaults.

Passing the MARIADB_ROOT_PASSWORD environment variable when running the image for the first time will set the password of the MARIADB_ROOT_USER user to the value of MARIADB_ROOT_PASSWORD.

Warning The MARIADB_ROOT_USER user is always created with remote access. It's suggested that the MARIADB_ROOT_PASSWORD env variable is always specified to set a password for the MARIADB_ROOT_USER user. In case you want to allow the MARIADB_ROOT_USER user to access the database without a password set the environment variable ALLOW_EMPTY_PASSWORD=yes. This is recommended only for development.

Allowing empty passwords

By default the MariaDB image expects all the available passwords to be set. In order to allow empty passwords, it is necessary to set the ALLOW_EMPTY_PASSWORD=yes env variable. This env variable is only recommended for testing or development purposes. We strongly recommend specifying the MARIADB_ROOT_PASSWORD for any other scenario.

Creating a database on first run

By passing the MARIADB_DATABASE environment variable when running the image for the first time, a database will be created. This is useful if your application requires that a database already exists, saving you from having to manually create the database using the MySQL client.

Creating a database user on first run

You can create a restricted database user that only has permissions for the database created with the MARIADB_DATABASE environment variable. To do this, provide the MARIADB_USER environment variable and to set a password for the database user provide the MARIADB_PASSWORD variable (alternatively, you can set the MARIADB_PASSWORD_FILE with the path to a file that contains the user password). MariaDB supports different authentication mechanisms, such as pam or mysql_native_password. To set it, use the MARIADB_AUTHENTICATION_PLUGIN variable.

Note! The root user will be created with remote access and without a password if ALLOW_EMPTY_PASSWORD is enabled. Please provide the MARIADB_ROOT_PASSWORD env variable instead if you want to set a password for the root user.

Disable creation of test database

By default MariaDB creates a test database. In order to disable the creation of this test database, the flag --skip-test-db can be passed to mysql_install_db. This function is only on MariaDB >= 10.5.

To disable the test database in the Bitnami MariaDB container, set the MARIADB_SKIP_TEST_DB environment variable to yes during the first boot of the container.

Slow query logs

By default MariaDB doesn't enable slow query log to record the SQL queries that take a long time to perform. You can modify these settings using the following environment variables:

  • MARIADB_ENABLE_SLOW_QUERY: Whether to enable slow query logs. Default: 0
  • MARIADB_LONG_QUERY_TIME: How much time, in seconds, defines a slow query. Default: 10.0

Slow queries information is logged to the <data-dir>/<hostname>-slow.log file by default, and you can easily check it with the mysqldumpslow tool (link to docs):

console
$ docker run -d -e MARIADB_ENABLE_SLOW_QUERY=1 -e ALLOW_EMPTY_PASSWORD=yes --name my-mariadb-container bitnami/mariadb
# wait a bit for the initialization process...
$ docker exec -it my-mariadb-container mysqldumpslow
Reading mysql slow query log from /bitnami/mariadb/data/<hostname>-slow.log
Count: 1  Time=0.01s (0s)  Lock=0.00s (0s)  Rows=0.0 (0), root[root]@localhost
  GRANT ALL PRIVILEGES ON *.* TO 'S'@'S' WITH GRANT OPTION

Count: 1  Time=0.01s (0s)  Lock=0.00s (0s)  Rows=0.0 (0), root[root]@localhost
  CREATE USER 'S'@'S'

Count: 1  Time=0.01s (0s)  Lock=0.00s (0s)  Rows=0.0 (0), root[root]@localhost
  DELETE FROM mysql.user WHERE user not in ('S','S')

Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows=0.0 (0), root[root]@localhost
  flush privileges
(...)

Slow filesystems

In some platforms, the filesystem used for persistence could be slow. That could cause the database to take extra time to be ready. If that's the case, you can configure the MARIADB_INIT_SLEEP_TIME environment variable to make the initialization script to wait extra time (in seconds) before proceeding with the configuration operations.

Setting up a replication cluster

A zero downtime MariaDB master-slave replication cluster can easily be setup with the Bitnami MariaDB Docker image using the following environment variables:

  • MARIADB_REPLICATION_MODE: The replication mode. Possible values master/slave. No defaults.
  • MARIADB_REPLICATION_USER: The replication user created on the master on first run. No defaults.
  • MARIADB_REPLICATION_PASSWORD: The replication users password. No defaults.
  • MARIADB_REPLICATION_PASSWORD_FILE: Path to a file that contains the replication user password. This will override the value specified in MARIADB_REPLICATION_PASSWORD. No defaults.
  • MARIADB_MASTER_HOST: Hostname/IP of replication master (slave parameter). No defaults.
  • MARIADB_MASTER_PORT_NUMBER: Server port of the replication master (slave parameter). Defaults to 3306.
  • MARIADB_MASTER_ROOT_USER: User on replication master with access to MARIADB_DATABASE (slave parameter). Defaults to root
  • MARIADB_MASTER_ROOT_PASSWORD: Password of user on replication master with access to MARIADB_DATABASE (slave parameter). No defaults.
  • MARIADB_MASTER_ROOT_PASSWORD_FILE: Path to a file that contains the password of user on replication master with access to MARIADB_DATABASE. This will override the value specified in MARIADB_MASTER_ROOT_PASSWORD. No defaults.
  • MARIADB_MASTER_DELAY: The database replication delay (slave parameter). Defaults to 0.

In a replication cluster you can have one master and zero or more slaves. When replication is enabled the master node is in read-write mode, while the slaves are in read-only mode. For best performance its advisable to limit the reads to the slaves.

NOTE: you can use the https://github.com/bitnami/containers/blob/main/bitnami/mariadb-galera to set up a master-master replication cluster

Configuration file

The image looks for user-defined configurations in /opt/bitnami/mariadb/conf/my_custom.cnf. Create a file named my_custom.cnf and mount it at /opt/bitnami/mariadb/conf/my_custom.cnf.

Overwrite the main Configuration file

It is also possible to use your custom my.cnf and overwrite the main configuration file.

console
docker run --name mariadb  -e ALLOW_EMPTY_PASSWORD=yes -v /path/to/my.cnf:/opt/bitnami/m

_Note: the README for this container is longer than the DockerHub length limit of 25000, so it has been trimmed. The full README can be found at [***]

更多相关 Docker 镜像与资源

以下是 bitnami/mariadb 相关的常用 Docker 镜像,适用于 关系型数据库、MySQL 兼容、高性能 等不同场景:

  • library/mariadb Docker 镜像说明(MySQL 分支,兼容性更好)
  • library/postgres Docker 镜像说明
  • bitnami/postgresql Docker 镜像说明(企业级配置,适合生产环境)
  • library/mysql Docker 镜像说明
  • bitnami/mysql Docker 镜像说明(企业级配置,适合生产环境)

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 mariadb 镜像标签

docker pull docker.xuanyuan.run/bitnami/mariadb:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull bitnami/mariadb:<标签>

更多 mariadb 镜像推荐

mariadb logo

library/mariadb

Docker 官方镜像
MariaDB Server 是一款从 MySQL 分叉而来的高性能开源关系型数据库,它继承了 MySQL 的核心架构与兼容性,同时凭借持续的技术革新和社区驱动的优化,在查询效率、并发处理及数据安全等方面实现了显著提升,广泛应用于企业级系统、Web服务平台及各类数据存储场景,成为全球开发者和组织青睐的开源数据库解决方案之一。
6.1千 次收藏10亿+ 次下载
3 天前更新
mariadb/maxscale logo

mariadb/maxscale

mariadb
MariaDB MaxScale 是世界上最先进的数据库代理,它能够实现数据库负载均衡、读写分离、高可用性支持与故障自动切换,同时提供数据分片管理、安全访问控制及性能监控等功能,有效提升数据库系统的运行效率、稳定性与可扩展性,简化复杂数据库环境的管理与维护。
39 次收藏500万+ 次下载
25 天前更新
mariadb/columnstore logo

mariadb/columnstore

mariadb
MariaDB ColumnStore是采用大规模并行分布式架构的列存储引擎,专为大数据扩展设计,可处理PB级数据,提供线性可扩展性和实时分析查询性能,适用于大规模数据分析场景。
4 次收藏5万+ 次下载
2 年前更新
mariadb/mariadb-prometheus-exporter-ubi logo

mariadb/mariadb-prometheus-exporter-ubi

mariadb
用于与MariaDB Operator配合使用的Docker镜像
1 次收藏1万+ 次下载
1 个月前更新
mariadb/mariadb-operator-enterprise logo

mariadb/mariadb-operator-enterprise

mariadb
用于配合MariaDB Operator使用的Docker镜像
1万+ 次下载
1 年前更新
mariadb/maxscale-prometheus-exporter-ubi logo

mariadb/maxscale-prometheus-exporter-ubi

mariadb
暂无描述
1 次收藏1万+ 次下载
2 天前更新

查看更多 mariadb 相关镜像

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

Docker 配置

登录仓库拉取

通过 Docker 登录认证访问私有仓库

专属域名拉取

无需登录使用专属域名

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

Harbor 镜像源配置

Harbor Proxy Repository 对接专属域名

Portainer 镜像源配置

Portainer Registries 加速拉取

Nexus 镜像源配置

Nexus3 Docker Proxy 内网缓存

系统配置

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

MacOS OrbStack

MacOS OrbStack 容器配置

Docker Compose

Docker Compose 项目配置

NAS 设备

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

极空间

极空间 NAS 系统配置服务

网络设备

爱快路由

爱快 iKuai 路由系统配置

宝塔面板

在宝塔面板一键配置镜像

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

使用与功能问题

配置了专属域名后,docker search 为什么会报错?

docker search 限制

Docker Hub 上有的镜像,为什么在轩辕镜像网站搜不到?

站内搜不到镜像

机器不能直连外网时,怎么用 docker save / load 迁镜像?

离线 save/load

docker pull 拉插件报错(plugin v1+json)怎么办?

插件要用 plugin install

WSL 里 Docker 拉镜像特别慢,怎么排查和优化?

WSL 拉取慢

轩辕镜像安全吗?如何用 digest 校验镜像没被篡改?

安全与 digest

第一次用轩辕镜像拉 Docker 镜像,要怎么登录和配置?

新手拉取配置

轩辕镜像合规吗?轩辕镜像的合规是怎么做的?

镜像合规机制

错误码与失败问题

docker pull 提示 manifest unknown 怎么办?

manifest unknown

docker pull 提示 no matching manifest 怎么办?

no matching manifest(架构)

镜像已拉取完成,却提示 invalid tar header 或 failed to register layer 怎么办?

invalid tar header(解压)

Docker pull 时 HTTPS / TLS 证书验证失败怎么办?

TLS 证书失败

Docker pull 时 DNS 解析超时或连不上仓库怎么办?

DNS 超时

docker 无法连接轩辕镜像域名怎么办?

域名连通性排查

Docker 拉取出现 410 Gone 怎么办?

410 Gone 排查

出现 402 或「流量用尽」提示怎么办?

402 与流量用尽

Docker 拉取提示 UNAUTHORIZED(401)怎么办?

401 认证失败

遇到 429 Too Many Requests(请求太频繁)怎么办?

429 限流

docker login 提示 Cannot autolaunch D-Bus,还算登录成功吗?

D-Bus 凭证提示

为什么会出现「单层超过 20GB」或 413,无法加速拉取?

413 与超大单层

账号 / 计费 / 权限

轩辕镜像免费版和专业版有什么区别?

免费版与专业版区别

轩辕镜像支持哪些 Docker 镜像仓库?

支持的镜像仓库

镜像拉取失败还会不会扣流量?

失败是否计费

麒麟 V10 / 统信 UOS 提示 KYSEC 权限不够怎么办?

KYSEC 拦截脚本

如何在轩辕镜像申请开具发票?

申请开票

怎么修改轩辕镜像的网站登录和仓库登录密码?

修改登录密码

如何注销轩辕镜像账户?要注意什么?

注销账户

配置与原理类

写了 registry-mirrors,为什么还是走官方或仍然报错?

mirrors 不生效

怎么用 docker tag 去掉镜像名里的轩辕域名前缀?

去掉域名前缀

如何拉取指定 CPU 架构的镜像(如 ARM64、AMD64)?

指定架构拉取

用轩辕镜像拉镜像时快时慢,常见原因有哪些?

拉取速度原因

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
Bitnami Secure Images(VMware Tanzu)
...
bitnami/mariadb
博客Docker 镜像公告与技术博客
热门查看热门 Docker 镜像推荐
安装一键安装 Docker 并配置镜像源
镜像拉取问题咨询请 提交工单,官方技术交流群:1072982923。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
镜像拉取问题咨询请提交工单,官方技术交流群:。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
商务合作:点击复制邮箱
©2024-2026 源码跳动
商务合作:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.