Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update hugo-official to detect architecture #81

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@ These images sets `bind` when started as server, otherwise no magic.

Default minimal image based upon [Busybox](https://hub.docker.com/r/_/busybox/):
* Aliases: `latest`, `busybox`, `busybox-ci`, `ci`, `busybox-onbuild`, `onbuild`
* Hugo 0.107.0: `0.107.0-busybox`, `0.107.0`, `0.107.0-busybox-ci`, `0.107.0-ci`, `0.107.0-busybox-onbuild`, `0.107.0-onbuild`
* Hugo 0.112.0: `0.112.0-busybox`, `0.112.0`, `0.112.0-busybox-ci`, `0.112.0-ci`, `0.112.0-busybox-onbuild`, `0.112.0-onbuild`

Minimal image based upon [Alpine](https://hub.docker.com/r/_/alpine/):
* Aliases: `alpine`, `alpine-ci`, `alpine-onbuild`, `ext-alpine`, `ext-alpine-ci`, `ext-alpine-onbuild`
* Hugo 0.107.0: `0.107.0-alpine`, `0.107.0-alpine-ci`, `0.107.0-alpine-onbuild`, `0.107.0-ext-alpine`, `0.107.0-ext-alpine-ci`, `0.107.0-ext-alpine-onbuild`
* Hugo 0.112.0: `0.112.0-alpine`, `0.112.0-alpine-ci`, `0.112.0-alpine-onbuild`, `0.112.0-ext-alpine`, `0.112.0-ext-alpine-ci`, `0.112.0-ext-alpine-onbuild`

Minimal image based upon [Alpine](https://hub.docker.com/r/_/alpine/) with [Asciidoctor](http://asciidoctor.org/) installed:
* Aliases: `asciidoctor`, `asciidoctor-ci`, `asciidoctor-onbuild`, `ext-asciidoctor`, `ext-asciidoctor-ci`, `ext-asciidoctor-onbuild`
* Hugo 0.107.0: `0.107.0-asciidoctor`, `0.107.0-asciidoctor-onbuild`, `0.107.0-asciidoctor-ci`, `0.107.0-ext-asciidoctor`, `0.107.0-ext-asciidoctor-ci`, `0.107.0-ext-asciidoctor-onbuild`
* Hugo 0.112.0: `0.112.0-asciidoctor`, `0.112.0-asciidoctor-onbuild`, `0.112.0-asciidoctor-ci`, `0.112.0-ext-asciidoctor`, `0.112.0-ext-asciidoctor-ci`, `0.112.0-ext-asciidoctor-onbuild`

Minimal image based upon [Alpine](https://hub.docker.com/r/_/alpine/) with [Pandoc](https://pandoc.org/) installed:
* Aliases: `pandoc`, `pandoc-ci`, `pandoc-onbuild`, `ext-pandoc`, `ext-pandoc-ci`, `ext-pandoc-onbuild`
* Hugo 0.107.0: `0.107.0-pandoc`, `0.107.0-pandoc-ci`, `0.107.0-pandoc-onbuild`, `0.107.0-ext-pandoc`, `0.107.0-ext-pandoc-ci`, `0.107.0-ext-pandoc-onbuild`
* Hugo 0.112.0: `0.112.0-pandoc`, `0.112.0-pandoc-ci`, `0.112.0-pandoc-onbuild`, `0.112.0-ext-pandoc`, `0.112.0-ext-pandoc-ci`, `0.112.0-ext-pandoc-onbuild`

Image based upon [Debian](https://hub.docker.com/r/_/debian/):
* Aliases: `debian`, `debian-ci`, `debian-onbuild`, `ext`, `latest-ext`, `ext-debian`, `ext-debian-ci`, `ext-ci`, `ext-debian-onbuild`, `ext-onbuild`
* Hugo 0.107.0: `0.107.0-debian`, `0.107.0-debian-ci`, `0.107.0-debian-onbuild`, `0.107.0-ext`, `0.107.0-ext-debian`, `0.107.0-ext-debian-ci`, `0.107.0-ext-ci`,`0.107.0-ext-debian-onbuild`, `0.107.0-ext-onbuild`
* Hugo 0.112.0: `0.112.0-debian`, `0.112.0-debian-ci`, `0.112.0-debian-onbuild`, `0.112.0-ext`, `0.112.0-ext-debian`, `0.112.0-ext-debian-ci`, `0.112.0-ext-ci`,`0.112.0-ext-debian-onbuild`, `0.112.0-ext-onbuild`

Image based upon [Ubuntu](https://hub.docker.com/r/_/ubuntu/):
* Aliases: `ubuntu`, `ubuntu-ci`, `ubuntu-onbuild`, `ext-ubuntu`, `ext-ubuntu-ci`, `ext-ubuntu-onbuild`
* Hugo 0.107.0: `0.107.0-ubuntu`, `0.107.0-ubuntu-ci`, `0.107.0-ubuntu-onbuild`, `0.107.0-ext-ubuntu`, `0.107.0-ext-ubuntu-ci`, `0.107.0-ext-ubuntu-onbuild`
* Hugo 0.112.0: `0.112.0-ubuntu`, `0.112.0-ubuntu-ci`, `0.112.0-ubuntu-onbuild`, `0.112.0-ext-ubuntu`, `0.112.0-ext-ubuntu-ci`, `0.112.0-ext-ubuntu-onbuild`

*Looking for older tags? Please see the [complete list of tags](https://github.com/klakegg/docker-hugo/blob/master/doc/tags.md).*

Expand All @@ -48,7 +48,7 @@ Normal build:
```shell
docker run --rm -it \
-v $(pwd):/src \
klakegg/hugo:0.107.0
klakegg/hugo:0.112.0
```

Run server:
Expand All @@ -57,7 +57,7 @@ Run server:
docker run --rm -it \
-v $(pwd):/src \
-p 1313:1313 \
klakegg/hugo:0.107.0 \
klakegg/hugo:0.112.0 \
server
```

Expand All @@ -68,7 +68,7 @@ Normal build:

```yaml
build:
image: klakegg/hugo:0.107.0
image: klakegg/hugo:0.112.0
volumes:
- ".:/src"
```
Expand All @@ -77,7 +77,7 @@ Run server:

```yaml
server:
image: klakegg/hugo:0.107.0
image: klakegg/hugo:0.112.0
command: server
volumes:
- ".:/src"
Expand Down Expand Up @@ -124,7 +124,7 @@ services:
script:
- docker run --rm -i \
-v $(pwd):/src \
klakegg/hugo:0.107.0
klakegg/hugo:0.112.0
```

The `bash` environment is used for faster loading before Travis is ready to trigger Docker.
Expand All @@ -140,7 +140,7 @@ To get into a shell for your site:
```shell
docker run --rm -it \
-v $(pwd):/src \
klakegg/hugo:0.107.0-alpine \
klakegg/hugo:0.112.0-alpine \
shell
```

Expand Down Expand Up @@ -173,7 +173,7 @@ The onbuild images adds content of the folder of your Dockerfile into `/src` and
Example Dockerfile for your project where the site is made into an nginx image (Docker 17.05-ce or newer):

```Dockerfile
FROM klakegg/hugo:0.107.0-onbuild AS hugo
FROM klakegg/hugo:0.112.0-onbuild AS hugo

FROM nginx
COPY --from=hugo /target /usr/share/nginx/html
Expand Down Expand Up @@ -210,7 +210,7 @@ Example of explicit setting `pandoc` alias:
docker run --rm -it \
-v $(pwd):/src \
-e HUGO_PANDOC="pandoc-default --strip-empty-paragraphs" \
klakegg/hugo:0.107.0-pandoc
klakegg/hugo:0.112.0-pandoc
```


Expand All @@ -226,14 +226,14 @@ On command line using `--entrypoint`:
docker run --rm -it \
-v $(pwd):/src \
--entrypoint hugo-official \
klakegg/hugo:0.107.0
klakegg/hugo:0.112.0
```

In docker-compose using `entrypoint`:

```yaml
build:
image: klakegg/hugo:0.107.0
image: klakegg/hugo:0.112.0
entrypoint: hugo-official
volumes:
- ".:/src"
Expand All @@ -244,10 +244,10 @@ In docker-compose using `entrypoint`:

| Software | Version |
| -------- | ------- |
| Go | 1.16.2 |
| NodeJS | 18.x |
| Go | 1.19.9 |
| NodeJS | 20.x |
| Pandoc | 2.12 |
| Yarn | 1.22.10 |
| Yarn | 1.22.19 |


## Configuration
Expand Down
59 changes: 59 additions & 0 deletions doc/changelog/0.108.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
## :heartbeat: Updates

* Hugo: [`0.107.0`](https://github.com/klakegg/docker-hugo/releases/tag/0.107.0) => `0.108.0`
* Alpine: `3.16` => `3.18`
* Busybox: `1.35` => `1.36`
* Debian: `11.3` => `11.7`
* Ubuntu: `22.04` => `23.04`
* NodeJS: `18.x` => `20.x`
* Golang: `1.17` => `1.19.9`
* Sass Embedded: `1.52.3` => `1.56.1`
* autoprefixer: `10.2.4` => `10.4.14`
* postcss: `8.2.6` => `8.4.24`
* postcss-cli: `8.3.1` => `10.1.0`
* yarn: `1.22.10` => `1.22.19`


## Docker images

<details>
<summary>Click to see available images</summary>

This release is available from Docker Hub as project `klakegg/hugo` with the following tags:

| Alias tags | Version specific tags |
| ---------------------------- | ------------------------------------------ |
| `busybox`, `latest` | `0.108.0-busybox`, `0.108.0` |
| `busybox-ci`, `ci` | `0.108.0-busybox-ci`, `0.108.0-ci` |
| `busybox-onbuild`, `onbuild` | `0.108.0-busybox-onbuild`, `0.108.0-onbuild` |
| `alpine` | `0.108.0-alpine` |
| `alpine-ci` | `0.108.0-alpine-ci` |
| `alpine-onbuild` | `0.108.0-alpine-onbuild` |
| `asciidoctor` | `0.108.0-asciidoctor` |
| `asciidoctor-ci` | `0.108.0-asciidoctor-ci` |
| `asciidoctor-onbuild` | `0.108.0-asciidoctor-onbuild` |
| `pandoc` | `0.108.0-pandoc` |
| `pandoc-ci` | `0.108.0-pandoc-ci` |
| `pandoc-onbuild` | `0.108.0-pandoc-onbuild` |
| `ext-alpine` | `0.108.0-ext-alpine` |
| `ext-alpine-ci` | `0.108.0-ext-alpine-ci` |
| `ext-alpine-onbuild` | `0.108.0-ext-alpine-onbuild` |
| `ext-asciidoctor` | `0.108.0-ext-asciidoctor` |
| `ext-asciidoctor-ci` | `0.108.0-ext-asciidoctor-ci` |
| `ext-asciidoctor-onbuild` | `0.108.0-ext-asciidoctor-onbuild` |
| `ext-pandoc` | `0.108.0-ext-pandoc` |
| `ext-pandoc-ci` | `0.108.0-ext-pandoc-ci` |
| `ext-pandoc-onbuild` | `0.108.0-ext-pandoc-onbuild` |
| `debian` | `0.108.0-debian` |
| `debian-ci` | `0.108.0-debian-ci` |
| `debian-onbuild` | `0.108.0-debian-onbuild` |
| `ext-debian`, `ext`, `latest-ext` | `0.108.0-ext-debian`, `0.108.0-ext` |
| `ext-debian-ci`, `ext-ci` | `0.108.0-ext-debian-ci`, `0.108.0-ext-ci` |
| `ext-debian-onbuild`, `ext-onbuild` | `0.108.0-ext-debian-onbuild`, `0.108.0-ext-onbuild` |
| `ubuntu` | `0.108.0-ubuntu` |
| `ubuntu-ci` | `0.108.0-ubuntu-ci` |
| `ubuntu-onbuild` | `0.108.0-ubuntu-onbuild` |
| `ext-ubuntu` | `0.108.0-ext-ubuntu` |
| `ext-ubuntu-ci` | `0.108.0-ext-ubuntu-ci` |
| `ext-ubuntu-onbuild` | `0.108.0-ext-ubuntu-onbuild` |
</details>
48 changes: 48 additions & 0 deletions doc/changelog/0.109.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
## :heartbeat: Updates

* Hugo: [`0.108.0`](https://github.com/klakegg/docker-hugo/releases/tag/0.108.0) => `0.109.0`


## Docker images

<details>
<summary>Click to see available images</summary>

This release is available from Docker Hub as project `klakegg/hugo` with the following tags:

| Alias tags | Version specific tags |
| ---------------------------- | ------------------------------------------ |
| `busybox`, `latest` | `0.109.0-busybox`, `0.109.0` |
| `busybox-ci`, `ci` | `0.109.0-busybox-ci`, `0.109.0-ci` |
| `busybox-onbuild`, `onbuild` | `0.109.0-busybox-onbuild`, `0.109.0-onbuild` |
| `alpine` | `0.109.0-alpine` |
| `alpine-ci` | `0.109.0-alpine-ci` |
| `alpine-onbuild` | `0.109.0-alpine-onbuild` |
| `asciidoctor` | `0.109.0-asciidoctor` |
| `asciidoctor-ci` | `0.109.0-asciidoctor-ci` |
| `asciidoctor-onbuild` | `0.109.0-asciidoctor-onbuild` |
| `pandoc` | `0.109.0-pandoc` |
| `pandoc-ci` | `0.109.0-pandoc-ci` |
| `pandoc-onbuild` | `0.109.0-pandoc-onbuild` |
| `ext-alpine` | `0.109.0-ext-alpine` |
| `ext-alpine-ci` | `0.109.0-ext-alpine-ci` |
| `ext-alpine-onbuild` | `0.109.0-ext-alpine-onbuild` |
| `ext-asciidoctor` | `0.109.0-ext-asciidoctor` |
| `ext-asciidoctor-ci` | `0.109.0-ext-asciidoctor-ci` |
| `ext-asciidoctor-onbuild` | `0.109.0-ext-asciidoctor-onbuild` |
| `ext-pandoc` | `0.109.0-ext-pandoc` |
| `ext-pandoc-ci` | `0.109.0-ext-pandoc-ci` |
| `ext-pandoc-onbuild` | `0.109.0-ext-pandoc-onbuild` |
| `debian` | `0.109.0-debian` |
| `debian-ci` | `0.109.0-debian-ci` |
| `debian-onbuild` | `0.109.0-debian-onbuild` |
| `ext-debian`, `ext`, `latest-ext` | `0.109.0-ext-debian`, `0.109.0-ext` |
| `ext-debian-ci`, `ext-ci` | `0.109.0-ext-debian-ci`, `0.109.0-ext-ci` |
| `ext-debian-onbuild`, `ext-onbuild` | `0.109.0-ext-debian-onbuild`, `0.109.0-ext-onbuild` |
| `ubuntu` | `0.109.0-ubuntu` |
| `ubuntu-ci` | `0.109.0-ubuntu-ci` |
| `ubuntu-onbuild` | `0.109.0-ubuntu-onbuild` |
| `ext-ubuntu` | `0.109.0-ext-ubuntu` |
| `ext-ubuntu-ci` | `0.109.0-ext-ubuntu-ci` |
| `ext-ubuntu-onbuild` | `0.109.0-ext-ubuntu-onbuild` |
</details>
48 changes: 48 additions & 0 deletions doc/changelog/0.110.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
## :heartbeat: Updates

* Hugo: [`0.109.0`](https://github.com/klakegg/docker-hugo/releases/tag/0.109.0) => `0.110.0`


## Docker images

<details>
<summary>Click to see available images</summary>

This release is available from Docker Hub as project `klakegg/hugo` with the following tags:

| Alias tags | Version specific tags |
| ---------------------------- | ------------------------------------------ |
| `busybox`, `latest` | `0.110.0-busybox`, `0.110.0` |
| `busybox-ci`, `ci` | `0.110.0-busybox-ci`, `0.110.0-ci` |
| `busybox-onbuild`, `onbuild` | `0.110.0-busybox-onbuild`, `0.110.0-onbuild` |
| `alpine` | `0.110.0-alpine` |
| `alpine-ci` | `0.110.0-alpine-ci` |
| `alpine-onbuild` | `0.110.0-alpine-onbuild` |
| `asciidoctor` | `0.110.0-asciidoctor` |
| `asciidoctor-ci` | `0.110.0-asciidoctor-ci` |
| `asciidoctor-onbuild` | `0.110.0-asciidoctor-onbuild` |
| `pandoc` | `0.110.0-pandoc` |
| `pandoc-ci` | `0.110.0-pandoc-ci` |
| `pandoc-onbuild` | `0.110.0-pandoc-onbuild` |
| `ext-alpine` | `0.110.0-ext-alpine` |
| `ext-alpine-ci` | `0.110.0-ext-alpine-ci` |
| `ext-alpine-onbuild` | `0.110.0-ext-alpine-onbuild` |
| `ext-asciidoctor` | `0.110.0-ext-asciidoctor` |
| `ext-asciidoctor-ci` | `0.110.0-ext-asciidoctor-ci` |
| `ext-asciidoctor-onbuild` | `0.110.0-ext-asciidoctor-onbuild` |
| `ext-pandoc` | `0.110.0-ext-pandoc` |
| `ext-pandoc-ci` | `0.110.0-ext-pandoc-ci` |
| `ext-pandoc-onbuild` | `0.110.0-ext-pandoc-onbuild` |
| `debian` | `0.110.0-debian` |
| `debian-ci` | `0.110.0-debian-ci` |
| `debian-onbuild` | `0.110.0-debian-onbuild` |
| `ext-debian`, `ext`, `latest-ext` | `0.110.0-ext-debian`, `0.110.0-ext` |
| `ext-debian-ci`, `ext-ci` | `0.110.0-ext-debian-ci`, `0.110.0-ext-ci` |
| `ext-debian-onbuild`, `ext-onbuild` | `0.110.0-ext-debian-onbuild`, `0.110.0-ext-onbuild` |
| `ubuntu` | `0.110.0-ubuntu` |
| `ubuntu-ci` | `0.110.0-ubuntu-ci` |
| `ubuntu-onbuild` | `0.110.0-ubuntu-onbuild` |
| `ext-ubuntu` | `0.110.0-ext-ubuntu` |
| `ext-ubuntu-ci` | `0.110.0-ext-ubuntu-ci` |
| `ext-ubuntu-onbuild` | `0.110.0-ext-ubuntu-onbuild` |
</details>
48 changes: 48 additions & 0 deletions doc/changelog/0.111.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
## :heartbeat: Updates

* Hugo: [`0.110.0`](https://github.com/klakegg/docker-hugo/releases/tag/0.110.0) => `0.111.0`


## Docker images

<details>
<summary>Click to see available images</summary>

This release is available from Docker Hub as project `klakegg/hugo` with the following tags:

| Alias tags | Version specific tags |
| ---------------------------- | ------------------------------------------ |
| `busybox`, `latest` | `0.111.0-busybox`, `0.111.0` |
| `busybox-ci`, `ci` | `0.111.0-busybox-ci`, `0.111.0-ci` |
| `busybox-onbuild`, `onbuild` | `0.111.0-busybox-onbuild`, `0.111.0-onbuild` |
| `alpine` | `0.111.0-alpine` |
| `alpine-ci` | `0.111.0-alpine-ci` |
| `alpine-onbuild` | `0.111.0-alpine-onbuild` |
| `asciidoctor` | `0.111.0-asciidoctor` |
| `asciidoctor-ci` | `0.111.0-asciidoctor-ci` |
| `asciidoctor-onbuild` | `0.111.0-asciidoctor-onbuild` |
| `pandoc` | `0.111.0-pandoc` |
| `pandoc-ci` | `0.111.0-pandoc-ci` |
| `pandoc-onbuild` | `0.111.0-pandoc-onbuild` |
| `ext-alpine` | `0.111.0-ext-alpine` |
| `ext-alpine-ci` | `0.111.0-ext-alpine-ci` |
| `ext-alpine-onbuild` | `0.111.0-ext-alpine-onbuild` |
| `ext-asciidoctor` | `0.111.0-ext-asciidoctor` |
| `ext-asciidoctor-ci` | `0.111.0-ext-asciidoctor-ci` |
| `ext-asciidoctor-onbuild` | `0.111.0-ext-asciidoctor-onbuild` |
| `ext-pandoc` | `0.111.0-ext-pandoc` |
| `ext-pandoc-ci` | `0.111.0-ext-pandoc-ci` |
| `ext-pandoc-onbuild` | `0.111.0-ext-pandoc-onbuild` |
| `debian` | `0.111.0-debian` |
| `debian-ci` | `0.111.0-debian-ci` |
| `debian-onbuild` | `0.111.0-debian-onbuild` |
| `ext-debian`, `ext`, `latest-ext` | `0.111.0-ext-debian`, `0.111.0-ext` |
| `ext-debian-ci`, `ext-ci` | `0.111.0-ext-debian-ci`, `0.111.0-ext-ci` |
| `ext-debian-onbuild`, `ext-onbuild` | `0.111.0-ext-debian-onbuild`, `0.111.0-ext-onbuild` |
| `ubuntu` | `0.111.0-ubuntu` |
| `ubuntu-ci` | `0.111.0-ubuntu-ci` |
| `ubuntu-onbuild` | `0.111.0-ubuntu-onbuild` |
| `ext-ubuntu` | `0.111.0-ext-ubuntu` |
| `ext-ubuntu-ci` | `0.111.0-ext-ubuntu-ci` |
| `ext-ubuntu-onbuild` | `0.111.0-ext-ubuntu-onbuild` |
</details>
Loading