Answers for "how to open mysql in docker"

SQL
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