We can configure mysql docker image using customer configuration file
- Support for utf8mb4
- Support for Order By and Group By queries
we have to prepare custom cnf file and add that file into docker image while building a mysql image
command:
sudo docker build -f DockerFile -t mysql-docker-image .
sudo docker run -p 3306:3306 --name mysql -e MYSQL_ROOT_PASSWORD=root -d mysql-docker-image