Skip to content

tkw1536/docker-dokuwiki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tkw01536/alpine-dokuwiki

CI Status

This is an automated build, and a fork of the original project to incoperate changes needed for recent DokuWiki versions.

It uses the Alpine image and sets up a container with dokuwiki installed. Follows build instructions similar to the Alpine Wiki with directory modifications.

Build Info

Images

Ports

  • Dokuwiki/Lighttpd: 80 Container Side

Volumes

  • /opt/dokuwiki/data/
  • /opt/dokuwiki/lib/plugins/
  • /opt/dokuwiki/conf/
  • /opt/dokuwiki/lib/tpl/

Usage

This image is available on the GitHub Package Registry.

docker run -p 80:80 ghcr.io/tkw1536/docker-dokuwiki/dokuwiki:latest

This will store the workspace in /opt/dokuwiki/data. You will probably want to make that a persistent volume (recommended):

docker run -p 80:80 -v /you/path:/opt/dokuwiki/data ghcr.io/tkw1536/docker-dokuwiki/dokuwiki:latest

or only mount the plugins folder

docker run -p 80:80 -v /you/path:/opt/dokuwiki/lib/plugins ghcr.io/tkw1536/docker-dokuwiki/dokuwiki:latest