DokuWiki container with URL rewrite, authad, and X-Sendfile support.
10K+
DokuWiki container with URL rewrite, authad, and X-Sendfile support.
For pretty URLs, go to the Configuration Manager and set userewrite to ".htaccess"
To enable the X-Sendfile header, go to the Configuration Manager and set xsendfile to "Proprietary lighttpd header"
For AD authentication, enable the authad plugin.
docker run -d -p 80:80 --name dokuwiki bfogarty/dokuwiki
The installer will then be accessible at: http://localhost/install.php
Create a data container:
docker run --volumes-from dokuwiki --name dokuwiki_data busybox true
Now you can safely delete your DokuWiki container:
docker stop dokuwiki && docker rm dokuwiki
To recreate your DokuWiki container, attach the volumes from your dokuwiki_data container:
docker run -d -p 80:80 --name dokuwiki --volumes-from dokuwiki_data bfogarty/dokuwiki
git clone https://github.com/bfogarty/docker-files.git
cd docker-files/dokuwiki
docker build -t bfogarty/dokuwiki .
Content type
Image
Digest
Size
86.6 MB
Last updated
over 9 years ago
docker pull bfogarty/dokuwiki