Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A Docker image for Hugo static-site generator, designed for CircleCI CI/CD with HTMLProofer included.
HubCI Hugo is a Docker image that packages the Hugo static-site generator with HTMLProofer, built specifically for running build, test, and deploy jobs for Hugo sites on CircleCI.
HubCI Hugo is a Docker image hosted on Docker Hub that bundles the Hugo static-site generator with the HTMLProofer testing tool. It takes a Hugo project as input and produces a built static site and validation results, designed to run as a base image inside CircleCI jobs. The image is maintained by FelicianoTech and is available under the MIT license.
htmlproofer command in CI.nightly for the unreleased Hugo master branch snapshot, updated at least daily, or edge for testing the latest image changes..circleci/config.yml example that builds a site from src/ and runs HTMLProofer on the output.image line in their workflow.hugo -v -s src/ inside a CircleCI job to produce the compiled site in src/public.htmlproofer src/public with flags like --allow-hash-href and --disable-external to catch broken links before deployment.0.96.0 for exact Hugo versions or 0.96 to automatically receive patch updates.The image works by providing a base environment with Hugo and HTMLProofer. On CircleCI, you specify the image in .circleci/config.yml, check out your repo, and run Hugo to build the site and HTMLProofer to test it. The maintainers generate Dockerfiles per Hugo version via gen-dockerfiles.sh and publish releases with release.sh.
The image offers semver tags such as 0.96.0 and 0.96, plus nightly for a daily snapshot of Hugo's master branch and edge for the latest image changes.
The image is open source under the MIT license and publicly hosted on Docker Hub, so it's free to use.
Add the image to your CircleCI config, then run hugo -v -s src/ to build and htmlproofer on the output directory, as shown in the repository's example.
The repository lists Feliciano.Tech, HugoNewsletter.com, DocsThursday.com, and two UNICEF project sites, several with public repositories.
