AppsWikisDokuwiki

Dokuwiki

Easy to use, lightweight, standards-compliant wiki engine with a simple syntax allowing reading the data outside the wiki. All data is stored in plain text files, therefore no database is required.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml (LinuxServer.io)

version: '3.3'
 
services:
  dokuwiki:
    image: lscr.io/linuxserver/dokuwiki:latest
    container_name: dokuwiki
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /path/to/dokuwiki/config:/config
    ports:
      - 80:80
      - 443:443 #optional
    restart: unless-stopped

Resources

Website: https://www.dokuwiki.org/

GitHub: https://github.com/dokuwiki/dokuwiki

Docker Hub (LinuxServer.io⁠): https://hub.docker.com/r/linuxserver/dokuwiki

Docker Hub (avhost⁠): https://hub.docker.com/r/avhost/docker-dokuwiki

Configuration: See the Docker Hub pages