Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

parametervalue
<password>memorable password, I keep it simple when developing
<path to share with container>

//Cc/Users/Selvyn/demo/vm_share/mysql

//Cc/Users/Selvyn/ must be the path to your account's home directory if you are using windows, or your home directory on Linux/Unix

The demo/vm_share/mysql can be any directory under your home folder

<image id>Should be the image id for mysql if you run docker images


Info
titleImportant

//c/ the drive letter must be lower case


Using the above table I use the following command

Code Block
languagebash
titleRun the command
docker run -p 3306:3306 --name mysql-populated -e MYSQL_ROOT_PASSWORD=ppp -d -v //Cc/Users/Selvyn/demo/vm_share/mysql:/root mysql-db-unpopulated:latest

...