Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.17 KB

README.md

File metadata and controls

36 lines (24 loc) · 1.17 KB

Gitit Experimental

Screenshot

Dockerfile for Gitit with experimental features.

Getting started

$ docker run --rm -p 5001:5001 t13a/gitit-experimental

Configuration

For details, please see base container.

Generate GraphViz/PlantUML diagram

By default, diagram generation is delegated to public PlantUML server. To use custom server, set URL to PLANTUML_SERVER_URL environment variable.

$ docker run \
...
-e PLANTUML_SERVER_URL=https://your-plantuml-server \
...
t13a/gitit-experimental

This feature depends on httplib2 module that uses own CA certificates where located in /usr/local/lib/python2.7/dist-packages/httplib2/cacerts.txt. If you want to use system CA bundle, please specify path to PLANTUML_CA_BUNDLE environment variable.

$ docker run \
...
-e PLANTUML_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt \
...
t13a/gitit-experimental