Skip to content

deck-app/mysql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mysql

Quick reference

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

Quick reference (cont.)

What is Mysql?

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)

logo

How to use this image

Start a mysql server instance using DECK

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

MySQL command line client

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;

From terminal with Docker

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

Edit .env file to change any settings before installing like mysql user name, password etc.

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