Example usage:
$ docker run -d -p 3306:3306 -e MYSQL_ROOT_PASSWORD=pass@word01 centurylink/mysql
MYSQL_ROOT_PASSWORD
: The password for the root user. Defaults to a blank passwordMYSQL_DATABASE
: A database to automatically create. If not provided, does not create a database.MYSQL_USER
: A user to create that has access to the database specified byMYSQL_DATABASE
.MYSQL_PASSWORD
: The password forMYSQL_USER
. Defaults to a blank password.