diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-07-26 00:24:27 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-07-26 00:24:27 -0400 |
commit | 8dd07c0ddd99ae626a1ec8c06f75f27fed51269f (patch) | |
tree | 261d3c9911dabc58c1ac54e4e36b3dee24d2032b /scripts/dockerfiles/images/mysql | |
parent | 0a739cf9ac901f54484c34bba8322418dedb09b0 (diff) | |
download | gitea-8dd07c0ddd99ae626a1ec8c06f75f27fed51269f.tar.gz gitea-8dd07c0ddd99ae626a1ec8c06f75f27fed51269f.zip |
New UI merge in progress
Diffstat (limited to 'scripts/dockerfiles/images/mysql')
-rw-r--r-- | scripts/dockerfiles/images/mysql/.gitkeep | 0 | ||||
-rw-r--r-- | scripts/dockerfiles/images/mysql/Dockerfile | 35 |
2 files changed, 35 insertions, 0 deletions
diff --git a/scripts/dockerfiles/images/mysql/.gitkeep b/scripts/dockerfiles/images/mysql/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/scripts/dockerfiles/images/mysql/.gitkeep diff --git a/scripts/dockerfiles/images/mysql/Dockerfile b/scripts/dockerfiles/images/mysql/Dockerfile new file mode 100644 index 0000000000..a9a72e35c4 --- /dev/null +++ b/scripts/dockerfiles/images/mysql/Dockerfile @@ -0,0 +1,35 @@ +#FROM stackbrew/ubuntu:13.10 +#FROM stackbrew/ubuntu +FROM stackbrew/ubuntu:saucy +MAINTAINER Meaglith Ma <genedna@gmail.com> (@genedna) + +RUN apt-get install -y --force-yes software-properties-common +RUN add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe" +RUN apt-get --yes --force-yes update +RUN apt-get --yes --force-yes upgrade + +ENV MYSQL_PASSWORD THE_DB_PASSWORD + +RUN echo "mysql-server mysql-server/root_password password $MYSQL_PASSWORD" | debconf-set-selections +RUN echo "mysql-server mysql-server/root_password_again password $MYSQL_PASSWORD" | debconf-set-selections + +RUN apt-get update && apt-get install -y --force-yes mysql-server +RUN sed -i -e"s/^bind-address\s*=\s*127.0.0.1/bind-address = 0.0.0.0/" /etc/mysql/my.cnf + +RUN service mysql restart + +RUN echo "mysql -uroot -p$MYSQL_PASSWORD -e 'drop database if exists gogs;'" >> import.sh +RUN echo "mysql -uroot -p$MYSQL_PASSWORD -e 'create database gogs;'" >> import.sh +RUN chmod +x import.sh + +RUN apt-get autoremove -y +RUN apt-get clean all + +RUN /usr/sbin/mysqld & \ + sleep 10s &&\ + echo "GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '$MYSQL_PASSWORD' WITH GRANT OPTION; FLUSH PRIVILEGES" | mysql -p$MYSQL_PASSWORD &&\ + ./import.sh + +EXPOSE 3306 + +CMD ["/usr/bin/mysqld_safe", "--skip-syslog", "--log-error=/dev/null"] |