blob: 063362052edf9b69cefeaf36e306081ceb52b416 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FROM startx/sv-php
MAINTAINER Christophe LARUE <dev@startx.fr>
RUN cd $APP_PATH && \
wget -q https://files.phpmyadmin.net/phpMyAdmin/4.5.2/phpMyAdmin-4.5.2-all-languages.zip && \
unzip phpMyAdmin-4.5.2-all-languages.zip && \
rm -f phpMyAdmin-4.5.2-all-languages.zip && \
mv phpMyAdmin-4.5.2-all-languages/* ./ && \
rm -rf phpMyAdmin-4.5.2-all-languages && \
mkdir /etc/httpd/logs && \
chown apache:apache /etc/httpd/logs
COPY config.inc.php $APP_PATH/config.inc.php
COPY test.php $APP_PATH/test.php
EXPOSE 80 443
VOLUME [$DATA_PATH,$LOG_PATH]
CMD ["/bin/run.sh"]
|