Can't connect to local MySQL server through socket
Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) docker
Solution
check connect
mysql -u root -h 127.0.0.1 -p 3306 DATABASE_NAME
Do not use 'localhost'
mysql Docker container for connecting ip is '127.0.0.1'
mysql Docker container for connecting ip is '127.0.0.1'
Changed host: localhost to host: 127.0.0.1
https://stackoverflow.com/a/30534549/1399891