Answers for "start mysql server docker]"

SQL
1

docker run mysql volume

docker run 
--detach 
--name=[container_name]
--env="MYSQL_ROOT_PASSWORD=[my_password]" 
--publish 6603:3306 
--volume=/root/docker/[container_name]/conf.d:/etc/mysql/conf.d 
mysql
Posted by: Guest on September-09-2020
0

how to open mysql in docker

# login into mysql
docker logs mysql1 2>&1 | grep GENERATED # check the automatically generated password of root user, copy it
docker exec -it mysql1 mysql -u root -p # parse and press the Enter key
Posted by: Guest on August-04-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language