summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstartxfr <clarue@startx.fr>2016-06-06 17:02:36 +0200
committerstartxfr <clarue@startx.fr>2016-06-06 17:02:36 +0200
commit031ee5178d8fb67b87bd0dcb9dbe73fe81192332 (patch)
tree06e9be658443ca162a0da9d483f441dc3e23a14f
parenta1ac0b7c2ed757dc8368adff57d2b8adc3b55af1 (diff)
downloadphpmyadmin-031ee5178d8fb67b87bd0dcb9dbe73fe81192332.tar.gz
phpmyadmin-031ee5178d8fb67b87bd0dcb9dbe73fe81192332.tar.bz2
phpmyadmin-031ee5178d8fb67b87bd0dcb9dbe73fe81192332.tar.xz
phpmyadmin-031ee5178d8fb67b87bd0dcb9dbe73fe81192332.zip
remove unused conf file in apache
-rw-r--r--Services/apache/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Services/apache/Dockerfile b/Services/apache/Dockerfile
index 78e7cdc..4e908ac 100644
--- a/Services/apache/Dockerfile
+++ b/Services/apache/Dockerfile
@@ -18,7 +18,8 @@ RUN chmod 775 /bin/run.sh /bin/sx-httpd.sh && \
touch $STARTUPLOG
COPY ./ $APP_PATH
RUN rm -f $APP_PATH/Dockerfile $APP_PATH/httpd.conf $APP_PATH/run.sh $APP_PATH/sx-httpd.sh && \
- chown -R apache:apache $APP_PATH $DATA_PATH $LOG_PATH
+ chown -R apache:apache $APP_PATH $DATA_PATH $LOG_PATH && \
+ rm -f /etc/httpd/conf.d/autoindex.conf /etc/httpd/conf.d/userdir.conf /etc/httpd/conf.d/welcome.conf
EXPOSE 80 443
VOLUME [$DATA_PATH,$LOG_PATH]