Skip to content

deck-app/mariadb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quick reference

Also see the "Getting Help with MariaDB" article on the MariaDB Knowledge Base.

Supported tags and respective Docker compose file links

Quick reference (cont.)

What is MariaDB?

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.

logo

How to use this image

Start a mariadb server instance using DECK

Install MariaDB from the DECK marketplace and follow the instructions on the GUI

Connect to MariaDB from the MySQL/MariaDB command line client

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();

From terminal with Docker

$ git clone https://github.com/deck-app/mariadb.git
$ cd mariadb
$ docker-compose up -d

Edit .env file to change any settings before installing like mariadb versions

docker-compose up -d

Modifying project settings

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

Rebuilding from terminal

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published