https://github.com/ankitrgadiya/docker-ikiwiki
Docker container for Ikiwiki
https://github.com/ankitrgadiya/docker-ikiwiki
docker ikiwiki
Last synced: 24 days ago
JSON representation
Docker container for Ikiwiki
- Host: GitHub
- URL: https://github.com/ankitrgadiya/docker-ikiwiki
- Owner: ankitrgadiya
- Created: 2017-09-24T05:38:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-25T05:46:35.000Z (almost 7 years ago)
- Last Synced: 2025-03-30T17:01:45.663Z (about 2 months ago)
- Topics: docker, ikiwiki
- Language: Shell
- Homepage: https://docs.argp.in/docker/ikiwiki/
- Size: 11.7 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ikiwiki Docker Container
[](https://travis-ci.com/ankitrgadiya/docker-ikiwiki)
This Docker image is supposed to be used with
[Nginx-Proxy](https://hub.docker.com/r/jwilder/nginx-proxy/).[Docker Hub](https://hub.docker.com/r/ankitrgadiya/ikiwiki/)
## Pull
```bash
$ docker pull ankitrgadiya/ikiwiki
```## Usage
* If using with [Nginx-Proxy](https://hub.docker.com/r/jwilder/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.