Skip to content

Commit

Permalink
feat: update docker image to have proper Hugo version (#1532)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuester authored Sep 9, 2024
1 parent 01287fb commit 4e3f78e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
hugo extended_0.122.0
hugo extended_0.122.0 # Should match the version in compose.yml
golang 1.21.0
nodejs 16.20.2
4 changes: 2 additions & 2 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ version: '3'
services:
hugo:
container_name: cht-hugo
image: jakejarvis/hugo-extended:0.113.0 # note that 0.122 isn't avail, but 0.113 has everything we need for now
image: docker.io/hugomods/hugo:0.122.0 # Should match the version in .tool-versions
ports:
- 1313:1313
volumes:
- ./:/src
command: server --buildDrafts --buildFuture --bind 0.0.0.0
command: hugo server --buildDrafts --buildFuture --bind 0.0.0.0

0 comments on commit 4e3f78e

Please sign in to comment.