From 33c861af09aa7a8758716b16c12b7085c2c6283a Mon Sep 17 00:00:00 2001 From: startxfr Date: Fri, 5 Dec 2014 19:19:40 +0100 Subject: fin des modifications sur le template mariadb --- Services/mariadb/Dockerfile | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'Services/mariadb/Dockerfile') diff --git a/Services/mariadb/Dockerfile b/Services/mariadb/Dockerfile index 9140c96..eaead31 100644 --- a/Services/mariadb/Dockerfile +++ b/Services/mariadb/Dockerfile @@ -1,29 +1,28 @@ FROM startx/fedora MAINTAINER Christophe LARUE -COPY sx/* /sx/ RUN yum -y install \ mariadb-libs \ mariadb-server \ mariadb \ - \ - psmisc \ - \ && yum clean all \ && mkdir -p /var/log/mysql \ && mkdir -p /sx \ && touch /var/log/mysql/.keep /var/lib/mysql/.keep \ && chown -R mysql:mysql /var/log/mysql /var/lib/mysql \ - && chmod ug+rx /sx/mariadb* \ - && chown -R mysql:mysql /sx/mariadb* + && mkdir -p /tmp/sql +COPY sx/* /sx/ +COPY *.sql /tmp/sql/ +RUN chmod ug+rx /sx/mariadb* /tmp/sql \ + && chown -R mysql:mysql /sx/mariadb* /tmp/sql -USER mysql EXPOSE 3306 VOLUME ["/var/lib/mysql", "/var/log/mysql"] +USER mysql # if you wan't to set root password, otherwise auto-generated # see docker logs -ENV mysql_newadminpwd "newRootPassword" +ENV mysql_newadminpwd newRootPassword #ENDPOINT ["/sx/mariadb_run.sh"] -- cgit v1.2.3