π¬ Gollum wiki with lots of sugar. π¬
For now, HTTP basic auth and gzip compression. HTTPS support will be next.
Inspired by suttang/gollum and nginx.
docker run -p 8080:80 schnatterer/gollum-galore
- Serves gollum at
http://localhost:8080, - with HTTP basic auth user
test, passwordtestπ². - The wiki data is stored in an anonymous volume.
docker run -p80:80 -v ~/on/your/host/gollum:/gollum/ -e GOLLUM_PARAMS="--allow-uploads --live-preview" schnatterer/gollum-galore
- Serves gollum at
http://localhost, - some of gollum's command line options are set
- with an HTTP basic auth file that you provide at
/on/your/host/gollum/config/.htpasswd. This can be created withhtpasswd -c /on/your/host/gollum/config/.htpasswd test(wheretest) is the username, for example. - The wiki data is stored in
/on/your/host/gollum/wikiand you calledgit initin this folder before starting the container. You can set the git author usinggit config user.name 'John Doe' && git config user.email 'john@doe.org'.