diff --git a/Dockerfile b/Dockerfile index 9531c90f..fda1406f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM busybox:1.28 AS fetch -ARG VERSION=0.38 +ARG VERSION=0.38.1 RUN echo "Version: ${VERSION}" ADD https://github.com/gohugoio/hugo/releases/download/v${VERSION}/hugo_${VERSION}_Linux-64bit.tar.gz /hugo.tar.gz diff --git a/Dockerfile-alpine b/Dockerfile-alpine index c959191c..114fd1eb 100644 --- a/Dockerfile-alpine +++ b/Dockerfile-alpine @@ -1,6 +1,6 @@ FROM busybox:1.28 AS fetch -ARG VERSION=0.38 +ARG VERSION=0.38.1 RUN echo "Version: ${VERSION}" ADD https://github.com/gohugoio/hugo/releases/download/v${VERSION}/hugo_${VERSION}_Linux-64bit.tar.gz /hugo.tar.gz diff --git a/README.md b/README.md index 07fee43b..e68211b1 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,8 @@ Minimal docker image for [Hugo](http://gohugo.io/). This image sets `destination ## Available tags Default minimal image based upon [Busybox](https://hub.docker.com/r/_/busybox/): -* Hugo 0.38: `0.38-busybox`, `busybox`, `0.38`, `latest` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.38/Dockerfile)) +* Hugo 0.38.1: `0.38.1-busybox`, `busybox`, `0.38.1`, `latest` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.38.1/Dockerfile)) +* Hugo 0.38: `0.38-busybox`, `0.38` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.38/Dockerfile)) * Hugo 0.37.1: `0.37.1-busybox`, `0.37.1` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.37.1/Dockerfile)) * Hugo 0.37: `0.37-busybox`, `0.37` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.37/Dockerfile)) * Hugo 0.36.1: `0.36.1-busybox`, `0.36.1` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.36.1/Dockerfile)) @@ -17,7 +18,8 @@ Default minimal image based upon [Busybox](https://hub.docker.com/r/_/busybox/): * Hugo 0.34: `0.34-busybox`, `0.34` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.34/Dockerfile)) Minimal image based upon [Alpine](https://hub.docker.com/r/_/alpine/): -* Hugo 0.38: `0.38-alpine`, `alpine` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.38/Dockerfile-alpine)) +* Hugo 0.38.1: `0.38.1-alpine`, `alpine` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.38.1/Dockerfile-alpine)) +* Hugo 0.38: `0.38-alpine` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.38/Dockerfile-alpine)) * Hugo 0.37.1: `0.37.1-alpine` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.37.1/Dockerfile-alpine)) * Hugo 0.37: `0.37-alpine` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.37/Dockerfile-alpine)) * Hugo 0.36.1: `0.36.1-alpine` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.36.1/Dockerfile-alpine)) @@ -26,7 +28,8 @@ Minimal image based upon [Alpine](https://hub.docker.com/r/_/alpine/): * Hugo 0.34: `0.34-alpine` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.34/Dockerfile-alpine)) Minimal image based upon [Alpine](https://hub.docker.com/r/_/alpine/) with [Asciidoctor](http://asciidoctor.org/) installed: -* Hugo 0.38: `0.38-asciidoctor`, `asciidoctor` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.38/Dockerfile-asciidoctor)) +* Hugo 0.38.1: `0.38.1-asciidoctor`, `asciidoctor` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.38.1/Dockerfile-asciidoctor)) +* Hugo 0.38: `0.38-asciidoctor` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.38/Dockerfile-asciidoctor)) * Hugo 0.37.1: `0.37.1-asciidoctor` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.37.1/Dockerfile-asciidoctor)) * Hugo 0.37: `0.37-asciidoctor` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.37/Dockerfile-asciidoctor)) * Hugo 0.36.1: `0.36.1-asciidoctor` ([Dockerfile](https://github.com/klakegg/docker-hugo/blob/0.36.1/Dockerfile-asciidoctor)) @@ -46,11 +49,11 @@ The good practice of having a separate output folder is part of the image. Normal build: -```docker run --rm -it -v $(pwd):/src -v $(pwd)/output:/target klakegg/hugo:0.38``` +```docker run --rm -it -v $(pwd):/src -v $(pwd)/output:/target klakegg/hugo:0.38.1``` Run server: -```docker run --rm -it -v $(pwd):/src -p 1313:1313 klakegg/hugo:0.38 server``` +```docker run --rm -it -v $(pwd):/src -p 1313:1313 klakegg/hugo:0.38.1 server``` ### docker-compose @@ -59,7 +62,7 @@ Normal build: ``` build: - image: klakegg/hugo:0.38 + image: klakegg/hugo:0.38.1 volumes: - .:/src - ./output:/target @@ -69,7 +72,7 @@ Run server: ``` server: - image: klakegg/hugo:0.38 + image: klakegg/hugo:0.38.1 command: server volumes: - .:/src @@ -84,13 +87,13 @@ Those wanting to override entrypoint in the image may easily do so. On command line using `--entrypoint`: -```docker run --rm -it -v $(pwd):/src -v $(pwd)/output:/target --entrypoint hugo klakegg/hugo:0.38``` +```docker run --rm -it -v $(pwd):/src -v $(pwd)/output:/target --entrypoint hugo klakegg/hugo:0.38.1``` In docker-compose using `entrypoint`: ``` build: - image: klakegg/hugo:0.38 + image: klakegg/hugo:0.38.1 entrypoint: hugo volumes: - .:/src