Dockerfile 1.8 KB

12345678910111213141516171819202122232425262728
  1. #FROM stackbrew/ubuntu:13.10
  2. FROM stackbrew/ubuntu
  3. MAINTAINER Meaglith Ma <[email protected]> (@genedna)
  4. RUN apt-get install -y --force-yes software-properties-common
  5. RUN echo "deb http://mirrors.aliyun.com/ubuntu/ saucy main restricted" > /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-updates main restricted" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy universe" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-updates universe" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy multiverse" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-updates multiverse" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-backports main restricted universe multiverse" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-security main restricted" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-security universe" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-security multiverse" >> /etc/apt/sources.list
  6. #RUN add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
  7. RUN apt-get --yes --force-yes update
  8. RUN apt-get --yes --force-yes upgrade
  9. ENV MYSQL_PASSWORD kuajie8402
  10. RUN echo "mysql-server mysql-server/root_password password $MYSQL_PASSWORD" | debconf-set-selections
  11. RUN echo "mysql-server mysql-server/root_password_again password $MYSQL_PASSWORD" | debconf-set-selections
  12. RUN apt-get update && apt-get install -y --force-yes mysql-server
  13. RUN sed -i -e"s/^bind-address\s*=\s*127.0.0.1/bind-address = 0.0.0.0/" /etc/mysql/my.cnf
  14. RUN apt-get autoremove -y
  15. RUN apt-get clean all
  16. EXPOSE 3306
  17. CMD ["/usr/bin/mysqld_safe", "--skip-syslog", "--log-error=/dev/null"]