MySQL is a very popular database engine. Usually, chances are you probably don’t wake up one day wanting to install MySQL. Instead, you most likely have a software package which requires a MySQL database, and so adding this engine is a side effect, so you want to do it as quickly and efficiently as possible. Here we will cover how to install the database as a Docker container, and then how to create a new user and database for it. The first thing to do is making sure Docker is installed. You can see my earlier post on how to do that. Once Docker is installed, use this command to install MySQL, along with the root password you wish: docker run --name mysql -v /mysql_content:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=mypassword -d mysql:latest After that, you can enter the container and run a shell in order to start the mysql client: docker exec -it mysql /bin/bash mysql -u root -p Finally, you can create a new user and database according to the needs of the software packa
Posts about technology, DevOps, the cloud and more.