1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:15 +02:00

add dokuwiki2

This commit is contained in:
kev 2015-05-19 18:12:20 +08:00
parent 67e2a0c95e
commit be3e27db2e

19
dokuwiki2/Dockerfile Normal file
View File

@ -0,0 +1,19 @@
#
# Dockerfile for Dokuwiki
#
FROM php:5.6-apache
MAINTAINER kev <noreply@datageek.info>
WORKDIR /var/www/html
RUN a2enmod rewrite
RUN curl "http://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz" | tar xz --strip 1
RUN chown -R www-data:www-data .
VOLUME [ \
"/var/www/html/conf", \
"/var/www/html/data", \
"/var/www/html/lib/plugins" \
]