MariaDB is an open-source, multi-threaded, relational database management system. It's a backward-compatible branch of the MySQL Community Server that provides a drop-in replacement for MySQL.
This image contains the MariaDB client and utilities.
To connect to a MariaDB instance, run the following command:
$ podman run -it --rm registry.opensuse.org/opensuse/mariadb-client:11.8 mariadb -h $HOST_IP -u root -p
Use the command below to dump all databases:
$ podman run -it --rm registry.opensuse.org/opensuse/mariadb-client:11.8 mariadb-dump $HOST_IP -p --all-databases > my-dump.sql
The following utilities are available in the image:
The MariaDB Knowledge Base Container Backup and Restoration provides further information on how to perform backup and restore.
SPDX-License-Identifier: MIT
This documentation and the build recipe are licensed as MIT. The container itself contains various software components under various open source licenses listed in the associated Software Bill of Materials (SBOM).
This image is based on openSUSE Tumbleweed.