Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 871 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 871 Bytes

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.