mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-24 06:28:23 +01:00
20 lines
364 B
Docker
20 lines
364 B
Docker
#
|
|
# 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" \
|
|
]
|
|
|