Skip to content

Instantly share code, notes, and snippets.

Created February 18, 2015 19:54
Docker Mysql
FROM ubuntu
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get -y install mysql-server
RUN sed -i 's/^bind-address/#bind-adress/g' /etc/mysql/my.cnf
RUN /etc/init.d/mysql start && echo "GRANT ALL ON *.* TO admin@'%' IDENTIFIED BY 'admin' WITH GRANT OPTION; FLUSH PRIVILEGES" | mysql -u root
EXPOSE 3306
CMD ["/usr/bin/mysqld_safe"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment