-
Maintained by:
MySql developer community -
Where to get help:
Database Adminstrators (Stack Exchange)
Also see the "Getting Help with Mysql" article on the Mysql Knowledge Base.
- Where to file issues:
Issues can be filed on https://github.com/deck-app/ "Docker compose" Component, or on GitHub
MySQL is the world's most popular open source database. With its proven performance, reliability and ease-of-use, MySQL has become the leading database choice for web-based applications, covering the entire range from personal projects and websites, via e-commerce and information services, all the way to high profile web properties including Facebook, Twitter, YouTube, Yahoo! and many more.
For more information and related downloads for MySQL Server and other MySQL products, please visit www.mysql.com (https://www.mysql.com)
Install MySql from the DECK marketplace and follow the instructions on the GUI
The following command starts mysql
command line client against your original mysql
container, allowing you to execute SQL statements against your database instance:
$ mysql -h mysql_hostname -u example-user -p
mysql [(none)]> SHOW DATABASES;
$ git clone https://github.com/deck-app/mysql.git
$ cd mysql
$ 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