kubernetes/contrib/git-sync/demo/hugo/README.md
2015-02-05 17:11:44 -08:00

293 B

hugo

hugo is a container that convert markdown into html using hugo static site generator.

Usage

# build the container
docker build -t hugo .
# run the hugo container
docker run -e HUGO_BASE_URL=example.com -v /path/to/md:/src -v /path/to/html:/dest hugo
``