blob: 329e4e3513884856eb5c3853f5726193f0cfacdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
RUN mkdir /etc/httpd/logs && chown -R 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"]
|