Docker image providing Zola, the Rust-based static site generator. This image is using Zola version 0.16.0, but it will be updated with later releases.
docker pull januson/zola
# Simple call
docker run --rm januson/zola --version
# Building the current directory
docker run --rm -v $(pwd):/workdir januson/zola build
If you are using git-bash on windows you have to add MSYS_NO_PATHCONV otherwise volume won't work.
MSYS_NO_PATHCONV=1 docker run --rm -v $(pwd):/workdir januson/zola build
Contributions are welcome.