From 6219218e8599992817d0902ac1f2a22c29da05ae7e19aac46425b323ff5cd1a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Tue, 2 Jul 2024 15:05:05 +0000 Subject: [PATCH] [info=5657d2340aa57199bb319d0ff2f25f78] OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/mariadb-client-image?expand=0&rev=86 --- README.md | 39 ++++++++++++++++++++++++++++++++++-- mariadb-client-image.changes | 5 +++++ 2 files changed, 42 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 965b9fa..7bd0b17 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,42 @@ -# The openSUSE Tumbleweed MariaDB Client container image +# MariaDB Client container image + ![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green) -MariaDB Client container based on the openSUSE Tumbleweed Base Container Image. +## Description + +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](https://mariadb.com/kb/en/mariadb-command-line-client/) and utilities. + +## Usage + +To connect to a MariaDB instance, run the following command: + +```ShellSession +$ podman run -it --rm registry.opensuse.org/opensuse/mariadb-client:11.4 mariadb -h $HOST_IP -u root -p +``` + +Use the command below to dump all databases: + +```ShellSession +$ podman run -it --rm registry.opensuse.org/opensuse/mariadb-client:11.4 mariadb-dump $HOST_IP -p --all-databases > my-dump.sql +``` + +## Utilities + +The following utilities are available in the image: + +- mariadb +- mariadb-admin +- mariadb-check +- mariadb-dump +- mariadb-import +- mariadb-show +- mariadbd-safe-helper + +## Backup and restore + +The MariaDB Knowledge Base [Container Backup and Restoration](https://mariadb.com/kb/en/container-backup-and-restoration/) provides further information on how to perform backup and restore. ## Licensing diff --git a/mariadb-client-image.changes b/mariadb-client-image.changes index a964b35..251ae31 100644 --- a/mariadb-client-image.changes +++ b/mariadb-client-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Jul 2 14:53:25 UTC 2024 - Alexandre Vicenzi + +- extend README + ------------------------------------------------------------------- Mon Jun 24 07:10:18 UTC 2024 - Dirk Mueller