diff options
author | startxfr <clarue@startx.fr> | 2015-11-28 20:11:25 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2015-11-28 20:11:25 +0100 |
commit | 59bbf66b7b1e4490694f2c5f732ddf9380acf053 (patch) | |
tree | 4fa52b027fc6df1c9b50c3fbaf740086b595b786 /Services/apache/Dockerfile | |
parent | 348568c89ae1ad19270e930c02a1492bc43e99b1 (diff) | |
download | phpmyadmin-59bbf66b7b1e4490694f2c5f732ddf9380acf053.tar.gz phpmyadmin-59bbf66b7b1e4490694f2c5f732ddf9380acf053.tar.bz2 phpmyadmin-59bbf66b7b1e4490694f2c5f732ddf9380acf053.tar.xz phpmyadmin-59bbf66b7b1e4490694f2c5f732ddf9380acf053.zip |
debugging on services. renaming service and use of extends in global docker-copose used in test
Diffstat (limited to 'Services/apache/Dockerfile')
-rw-r--r-- | Services/apache/Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Services/apache/Dockerfile b/Services/apache/Dockerfile index 24dc063..4e67fd4 100644 --- a/Services/apache/Dockerfile +++ b/Services/apache/Dockerfile @@ -5,9 +5,9 @@ USER root RUN dnf -y install httpd && \ dnf clean all ENV HTTPDCONF=/etc/httpd/conf.d/app.conf \ - STARTUPLOG=/data/logs/httpd/startup.log \ - LOG_PATH=/data/logs/httpd \ - APP_PATH=/data/httpd + STARTUPLOG=/data/logs/apache/startup.log \ + LOG_PATH=/data/logs/apache \ + APP_PATH=/data/apache COPY httpd.conf $HTTPDCONF COPY *.sh /bin/ RUN chmod 775 /bin/run.sh /bin/sx-httpd.sh && \ @@ -15,8 +15,8 @@ RUN chmod 775 /bin/run.sh /bin/sx-httpd.sh && \ rm -f /etc/httpd/conf.d/autoindex.conf && \ rm -f /etc/httpd/conf.d/welcome.conf && \ mkdir /data && \ - mkdir $APP_PATH && \ mkdir /data/logs && \ + mkdir $APP_PATH && \ mkdir $LOG_PATH && \ touch $STARTUPLOG COPY ./ $APP_PATH |