#
# // build the image as normal
# docker build -t eae-mysql-default
# // run the container based on the image
# docker run -p 3306:3307 -e MYSQL_TCP_PORT=3307 --name test1-customdir-mysql -v /home/giuseppe/mysql:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=password -d mysql
#
#


FROM mysql
RUN sed -ire 's/max_allowed_packet.*=.*/max_allowed_packet = 128M/g' /etc/mysql/my.cnf
