Skip to content

This is a docker image with dokuwiki using alpine and having installed nginx and the minimum requirements for PHP 7. Services are managed by supervisord.

Notifications You must be signed in to change notification settings

yohfdo/Minimal-Dokuwiki

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minimal-Dokuwiki

Summary

Simple dokuwiki with alpine, nginx, and php-fpm7.

Description

You can create a very simple personal or organization knowledge base with a minimal footprint with docker.

This is an image I created that user Alpine Linux (a very small footprint OS), Nginx, and PHP 7 (php-fpm). Services are managed by supervisord.

Once you have docker setup (on Linux or Windows), get the image by running

docker pull ianculovici/minimal-dokuwiki

You can use docker-compose to run the container. Here is a sample docker-compose.yml file:

version: '2'
services:
  dokuwiki:
    image: ianculovici/minimal-dokuwiki:latest
    container_name: "mywiki"
   volumes:
     - ./dokuwiki-data:/dokuwiki
   restart: always
    ports:
      - "7080:80"

All files to manually build the image are available on GitHub.

About

This is a docker image with dokuwiki using alpine and having installed nginx and the minimum requirements for PHP 7. Services are managed by supervisord.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%