diff options
author | Tristan Storch <tstorch@math.uni-bielefeld.de> | 2014-08-30 15:12:53 +0200 |
---|---|---|
committer | Tristan Storch <tstorch@math.uni-bielefeld.de> | 2014-08-30 15:12:53 +0200 |
commit | 69e332f432c87ce83a488a8c06a02ded26f66beb (patch) | |
tree | 03c8ae1382e92612341df57856e9d1a17e1de8a9 /scripts/dockerfiles/images/mysql | |
parent | 9bc63bda7ded31b77ad4aaf3495582a7c8555d2f (diff) |
Removed trailing white spaces
Removed trailing whitespaces with
```sh
for file in `grep -r " $" * | cut -d : -f 1 | sort | uniq | grep -v " "`; do sed -i 's/[ \t]*$//' $file; done
```
and some handwork.
Diffstat (limited to 'scripts/dockerfiles/images/mysql')
-rw-r--r-- | scripts/dockerfiles/images/mysql/Dockerfile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/dockerfiles/images/mysql/Dockerfile b/scripts/dockerfiles/images/mysql/Dockerfile index a9a72e35..bbf5c0a8 100644 --- a/scripts/dockerfiles/images/mysql/Dockerfile +++ b/scripts/dockerfiles/images/mysql/Dockerfile @@ -6,20 +6,20 @@ 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 +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 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 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 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 @@ -32,4 +32,4 @@ RUN /usr/sbin/mysqld & \ EXPOSE 3306 -CMD ["/usr/bin/mysqld_safe", "--skip-syslog", "--log-error=/dev/null"] +CMD ["/usr/bin/mysqld_safe", "--skip-syslog", "--log-error=/dev/null"] |