Sign inSign up

martyca/hugo

By martyca

Updated about 6 years ago

Hugo build directly from source https://github.com/gohugoio/hugo

Image
0

213

martyca/hugo repository overview

This container is build from the hugo git repository https://github.com/gohugoio/hugo no changes have been made and the versions of the container are synchronous with the version tags in the original repository.

D.I.Y.

you can build this yourself with the following shell script:

#!/bin/bash
echo Fetching latest version from Github.com
latest=$(curl -s -X GET https://api.github.com/repos/gohugoio/hugo/releases/latest | jq -r '.name')
echo Version is ${latest}
echo ###
echo Building Container hugo:${latest}
docker build -t hugo:${latest} https://github.com/gohugoio/hugo.git#${latest}
docker tag hugo:${latest} hugo:latest
echo Done.

Tag summary

Content type

Image

Digest

Size

36.2 MB

Last updated

about 6 years ago

docker pull martyca/hugo