https://github.com/katharostech/docker_dokuwiki
Docker image for Dokuwiki
https://github.com/katharostech/docker_dokuwiki
docker docker-image drone
Last synced: about 2 months ago
JSON representation
Docker image for Dokuwiki
- Host: GitHub
- URL: https://github.com/katharostech/docker_dokuwiki
- Owner: katharostech
- License: unlicense
- Created: 2019-08-21T22:01:20.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-29T01:12:50.000Z (almost 6 years ago)
- Last Synced: 2025-10-29T00:42:06.282Z (8 months ago)
- Topics: docker, docker-image, drone
- Language: Dockerfile
- Size: 44.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dokuwiki Docker Image
[](https://cloud.drone.io/katharostech/docker_dokuwiki)
This is a simple Docker image for the free and open source Dokuwiki. It is built on top of Ubuntu and is running PHP 7 and Nginx.
Dokuwiki is so simple to install that I have found no need for having environment variables for configuration. Everything can be done through the Dokuwiki UI as far as I am aware. :)
If you want to persist your install and/or configuration, the important paths are:
* The configuration directory: `/var/www/html/conf`
* The data directory ( where your wiki pages go ): `/var/www/html/data`
## Example Run Command
```bash
docker run --name dokuwiki \
-p 80:80 \
-e MAX_UPLOAD_SIZE=10M \
-v wiki-data:/var/www/html/data \
-v wiki-conf:/var/www/html/conf \
katharostech/dokuwiki
```