/docker-ikiwiki

Docker container for Ikiwiki

Primary LanguageShell

Ikiwiki Docker Container

Build Status

This Docker image is supposed to be used with Nginx-Proxy.

Docker Hub

Pull

$ docker pull ankitrgadiya/ikiwiki

Usage

  • If using with Nginx-Proxy

    $ docker run \
      --name ikiwiki \
      -v /path/to/wiki:/wiki \
      -d \
      -e VIRTUAL_HOST=domain.wiki \
      ankitrgadiya/ikiwiki
    
  • If using standalone

    $ docker run \
      --name ikiwiki \
      -v /path/to/wiki:/wiki \
      -p 80:80 \
      -d \
      ankitrgadiya/ikiwiki
    

Note: Standalone image does not support SSL so I recommend using it with Nginx-Proxy.