Created
February 18, 2015 19:54
Docker Mysql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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