Posts by jesse orestes • 1 point
1 post
-
-1
votes2
answers3280
viewsA: Configure Mysql Workbench on Docker
docker run --name mysqldb -p 3306:3306 -e MYSQL_ROOT_PASSWORD=root -d mysql Running the image in the shell, you need to set the port(-p 3306:3306) from your machine that will connect to the Mysql…