Difference between revisions of "Docker install of mysql"
From MyWiki
Line 1: | Line 1: | ||
'''Reference:''' https://hub.docker.com/_/mysql <br> | '''Reference:''' https://hub.docker.com/_/mysql <br> | ||
+ | <source lang="bash"> | ||
+ | docker run --name mysql-8 -e MYSQL_ROOT_PASSWORD=bananasoup -d mysql:8.0.33 | ||
+ | |||
+ | </source> |
Revision as of 08:58, 9 June 2023
Reference: https://hub.docker.com/_/mysql
docker run --name mysql-8 -e MYSQL_ROOT_PASSWORD=bananasoup -d mysql:8.0.33