mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
add dokuwiki2
This commit is contained in:
parent
67e2a0c95e
commit
be3e27db2e
19
dokuwiki2/Dockerfile
Normal file
19
dokuwiki2/Dockerfile
Normal 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" \
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user