Skip to content

Instantly share code, notes, and snippets.

@chmodx
Created February 8, 2016 14:54
Show Gist options
  • Save chmodx/24bff3a87a00c610ef3d to your computer and use it in GitHub Desktop.
Save chmodx/24bff3a87a00c610ef3d to your computer and use it in GitHub Desktop.
simple way for installation mySql server in a docker container
mkdir -p /storage/mysql/datadir
docker pull mysql/mysql-server
docker run --name mysql-master-container -p 6603:3306 -v /storage/mysql/datadir:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=toor -d mysql/mysql-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment