forked from klakegg/docker-hugo
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request to upgrade hugo version
- Loading branch information
Showing
5 changed files
with
85 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,27 +12,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.121.2: `0.121.2-busybox`, `0.121.2`, `0.121.2-busybox-ci`, `0.121.2-ci`, `0.121.2-busybox-onbuild`, `0.121.2-onbuild` | ||
* Hugo 0.122.0: `0.122.0-busybox`, `0.122.0`, `0.122.0-busybox-ci`, `0.122.0-ci`, `0.122.0-busybox-onbuild`, `0.122.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.121.2: `0.121.2-alpine`, `0.121.2-alpine-ci`, `0.121.2-alpine-onbuild`, `0.121.2-ext-alpine`, `0.121.2-ext-alpine-ci`, `0.121.2-ext-alpine-onbuild` | ||
* Hugo 0.122.0: `0.122.0-alpine`, `0.122.0-alpine-ci`, `0.122.0-alpine-onbuild`, `0.122.0-ext-alpine`, `0.122.0-ext-alpine-ci`, `0.122.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.121.2: `0.121.2-asciidoctor`, `0.121.2-asciidoctor-onbuild`, `0.121.2-asciidoctor-ci`, `0.121.2-ext-asciidoctor`, `0.121.2-ext-asciidoctor-ci`, `0.121.2-ext-asciidoctor-onbuild` | ||
* Hugo 0.122.0: `0.122.0-asciidoctor`, `0.122.0-asciidoctor-onbuild`, `0.122.0-asciidoctor-ci`, `0.122.0-ext-asciidoctor`, `0.122.0-ext-asciidoctor-ci`, `0.122.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.121.2: `0.121.2-pandoc`, `0.121.2-pandoc-ci`, `0.121.2-pandoc-onbuild`, `0.121.2-ext-pandoc`, `0.121.2-ext-pandoc-ci`, `0.121.2-ext-pandoc-onbuild` | ||
* Hugo 0.122.0: `0.122.0-pandoc`, `0.122.0-pandoc-ci`, `0.122.0-pandoc-onbuild`, `0.122.0-ext-pandoc`, `0.122.0-ext-pandoc-ci`, `0.122.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.121.2: `0.121.2-debian`, `0.121.2-debian-ci`, `0.121.2-debian-onbuild`, `0.121.2-ext`, `0.121.2-ext-debian`, `0.121.2-ext-debian-ci`, `0.121.2-ext-ci`,`0.121.2-ext-debian-onbuild`, `0.121.2-ext-onbuild` | ||
* Hugo 0.122.0: `0.122.0-debian`, `0.122.0-debian-ci`, `0.122.0-debian-onbuild`, `0.122.0-ext`, `0.122.0-ext-debian`, `0.122.0-ext-debian-ci`, `0.122.0-ext-ci`,`0.122.0-ext-debian-onbuild`, `0.122.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.121.2: `0.121.2-ubuntu`, `0.121.2-ubuntu-ci`, `0.121.2-ubuntu-onbuild`, `0.121.2-ext-ubuntu`, `0.121.2-ext-ubuntu-ci`, `0.121.2-ext-ubuntu-onbuild` | ||
* Hugo 0.122.0: `0.122.0-ubuntu`, `0.122.0-ubuntu-ci`, `0.122.0-ubuntu-onbuild`, `0.122.0-ext-ubuntu`, `0.122.0-ext-ubuntu-ci`, `0.122.0-ext-ubuntu-onbuild` | ||
|
||
*Looking for older tags? Please see the [complete list of tags](https://github.com/floryn90/docker-hugo/blob/master/doc/tags.md).* | ||
|
||
|
@@ -50,7 +50,7 @@ Normal build: | |
```shell | ||
docker run --rm -it \ | ||
-v $(pwd):/src \ | ||
floryn90/hugo:0.121.2 | ||
floryn90/hugo:0.122.0 | ||
``` | ||
|
||
Run server: | ||
|
@@ -59,7 +59,7 @@ Run server: | |
docker run --rm -it \ | ||
-v $(pwd):/src \ | ||
-p 1313:1313 \ | ||
floryn90/hugo:0.121.2 \ | ||
floryn90/hugo:0.122.0 \ | ||
server | ||
``` | ||
|
||
|
@@ -70,7 +70,7 @@ Normal build: | |
|
||
```yaml | ||
build: | ||
image: floryn90/hugo:0.121.2 | ||
image: floryn90/hugo:0.122.0 | ||
volumes: | ||
- ".:/src" | ||
``` | ||
|
@@ -79,7 +79,7 @@ Run server: | |
```yaml | ||
server: | ||
image: floryn90/hugo:0.121.2 | ||
image: floryn90/hugo:0.122.0 | ||
command: server | ||
volumes: | ||
- ".:/src" | ||
|
@@ -107,10 +107,10 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- name: hugo | ||
uses: klakegg/[email protected] | ||
uses: floryn90/[email protected] | ||
``` | ||
|
||
Find out more in [klakegg/actions-hugo](https://github.com/klakegg/actions-hugo). | ||
Find out more in [floryn90/actions-hugo](https://github.com/floryn90/actions-hugo). | ||
|
||
|
||
### Travis CI | ||
|
@@ -126,7 +126,7 @@ services: | |
script: | ||
- docker run --rm -i \ | ||
-v $(pwd):/src \ | ||
floryn90/hugo:0.121.2 | ||
floryn90/hugo:0.122.0 | ||
``` | ||
|
||
The `bash` environment is used for faster loading before Travis is ready to trigger Docker. | ||
|
@@ -142,7 +142,7 @@ To get into a shell for your site: | |
```shell | ||
docker run --rm -it \ | ||
-v $(pwd):/src \ | ||
floryn90/hugo:0.121.2-alpine \ | ||
floryn90/hugo:0.122.0-alpine \ | ||
shell | ||
``` | ||
|
||
|
@@ -175,7 +175,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 floryn90/hugo:0.121.2-onbuild AS hugo | ||
FROM floryn90/hugo:0.122.0-onbuild AS hugo | ||
FROM nginx | ||
COPY --from=hugo /target /usr/share/nginx/html | ||
|
@@ -212,7 +212,7 @@ Example of explicit setting `pandoc` alias: | |
docker run --rm -it \ | ||
-v $(pwd):/src \ | ||
-e HUGO_PANDOC="pandoc-default --strip-empty-paragraphs" \ | ||
floryn90/hugo:0.121.2-pandoc | ||
floryn90/hugo:0.122.0-pandoc | ||
``` | ||
|
||
|
||
|
@@ -228,14 +228,14 @@ On command line using `--entrypoint`: | |
docker run --rm -it \ | ||
-v $(pwd):/src \ | ||
--entrypoint hugo-official \ | ||
floryn90/hugo:0.121.2 | ||
floryn90/hugo:0.122.0 | ||
``` | ||
|
||
In docker-compose using `entrypoint`: | ||
|
||
```yaml | ||
build: | ||
image: floryn90/hugo:0.121.2 | ||
image: floryn90/hugo:0.122.0 | ||
entrypoint: hugo-official | ||
volumes: | ||
- ".:/src" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
## :loudspeaker: Breaking changes | ||
|
||
*Nothing* | ||
|
||
|
||
## :tada: Features | ||
|
||
*Nothing* | ||
|
||
|
||
## :bug: Fixes | ||
|
||
*Nothing* | ||
|
||
|
||
## :heartbeat: Updates | ||
|
||
* Hugo: [`0.121.2`](https://github.com/floryn90/docker-hugo/releases/tag/0.121.2) => `0.122.0` | ||
|
||
|
||
## Docker images | ||
|
||
<details> | ||
<summary>Click to see available images</summary> | ||
|
||
This release is available from Docker Hub as project `floryn90/hugo` with the following tags: | ||
|
||
| Alias tags | Version specific tags | | ||
| ---------------------------- | ------------------------------------------ | | ||
| `busybox`, `latest` | `0.122.0-busybox`, `0.122.0` | | ||
| `busybox-ci`, `ci` | `0.122.0-busybox-ci`, `0.122.0-ci` | | ||
| `busybox-onbuild`, `onbuild` | `0.122.0-busybox-onbuild`, `0.122.0-onbuild` | | ||
| `alpine` | `0.122.0-alpine` | | ||
| `alpine-ci` | `0.122.0-alpine-ci` | | ||
| `alpine-onbuild` | `0.122.0-alpine-onbuild` | | ||
| `asciidoctor` | `0.122.0-asciidoctor` | | ||
| `asciidoctor-ci` | `0.122.0-asciidoctor-ci` | | ||
| `asciidoctor-onbuild` | `0.122.0-asciidoctor-onbuild` | | ||
| `pandoc` | `0.122.0-pandoc` | | ||
| `pandoc-ci` | `0.122.0-pandoc-ci` | | ||
| `pandoc-onbuild` | `0.122.0-pandoc-onbuild` | | ||
| `ext-alpine` | `0.122.0-ext-alpine` | | ||
| `ext-alpine-ci` | `0.122.0-ext-alpine-ci` | | ||
| `ext-alpine-onbuild` | `0.122.0-ext-alpine-onbuild` | | ||
| `ext-asciidoctor` | `0.122.0-ext-asciidoctor` | | ||
| `ext-asciidoctor-ci` | `0.122.0-ext-asciidoctor-ci` | | ||
| `ext-asciidoctor-onbuild` | `0.122.0-ext-asciidoctor-onbuild` | | ||
| `ext-pandoc` | `0.122.0-ext-pandoc` | | ||
| `ext-pandoc-ci` | `0.122.0-ext-pandoc-ci` | | ||
| `ext-pandoc-onbuild` | `0.122.0-ext-pandoc-onbuild` | | ||
| `debian` | `0.122.0-debian` | | ||
| `debian-ci` | `0.122.0-debian-ci` | | ||
| `debian-onbuild` | `0.122.0-debian-onbuild` | | ||
| `ext-debian`, `ext`, `latest-ext` | `0.122.0-ext-debian`, `0.122.0-ext` | | ||
| `ext-debian-ci`, `ext-ci` | `0.122.0-ext-debian-ci`, `0.122.0-ext-ci` | | ||
| `ext-debian-onbuild`, `ext-onbuild` | `0.122.0-ext-debian-onbuild`, `0.122.0-ext-onbuild` | | ||
| `ubuntu` | `0.122.0-ubuntu` | | ||
| `ubuntu-ci` | `0.122.0-ubuntu-ci` | | ||
| `ubuntu-onbuild` | `0.122.0-ubuntu-onbuild` | | ||
| `ext-ubuntu` | `0.122.0-ext-ubuntu` | | ||
| `ext-ubuntu-ci` | `0.122.0-ext-ubuntu-ci` | | ||
| `ext-ubuntu-onbuild` | `0.122.0-ext-ubuntu-onbuild` | | ||
</details> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
image: floryn90/hugo | ||
version: 0.121.2 | ||
version: 0.122.0 | ||
|
||
platforms: | ||
- linux/amd64 |