-
Maintained by:
MariaDB developer community -
Where to get help:
Database Adminstrators (Stack Exchange), MariaDB Knowledge Base (Ask a Question here available).
Also see the "Getting Help with MariaDB" article on the MariaDB Knowledge Base.
-
Where to file issues:
Issues can be filed on https://github.com/deck-app/ "Docker compose" Component, or on GitHub -
Supported architectures: (more info)
amd64
,arm64v8
,ppc64le
,s390x
MariaDB Server is one of the most popular database servers in the world. It’s made by the original developers of MySQL and guaranteed to stay open source. Notable users include Wikipedia, DBS Bank, and ServiceNow.
The intent is also to maintain high compatibility with MySQL, ensuring a library binary equivalency and exact matching with MySQL APIs and commands. MariaDB developers continue to develop new features and improve performance to better serve its users.
Install MariaDB from the DECK marketplace and follow the instructions on the GUI
The following command starts another mariadb
container instance and runs the mysql
command line client against your original mariadb
container, allowing you to execute SQL statements against your database instance:
$ mysql -h mariadb_hostname -u example-user -p
MariaDB [(none)]> SELECT VERSION();
$ git clone https://github.com/deck-app/mariadb.git
$ cd mariadb
$ docker-compose up -d
docker-compose up -d
From the DECK app, go to stack list and click on project's More > configure > Advanced configuration
Follow the instructions below and restart your stack from the GUI
You have to rebuild the docker image after you make any changes to the project configuration, use the snippet below to rebuild and restart the stack
docker-compose stop && docker-compose up --build -d