Skip to content
Merged
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
4 changes: 0 additions & 4 deletions config/_default/hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,17 +99,13 @@ module:
languages:
en:
disabled: false
languageDirection: ""
languageName: ""
title: Deckhouse Development Platform
weight: 0
baseURL: https://deckhouse.io/products/development-platform/
params:
description: ""
ru:
disabled: false
languageDirection: ""
languageName: ""
weight: 1
title: Deckhouse Development Platform
baseURL: https://deckhouse.ru/products/development-platform/
Expand Down
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ services:
condition: service_healthy

hugo:
image: hugomods/hugo:debian-ci-0.150.1
image: ghcr.io/gohugoio/hugo:v0.161.1
user: "${UID:-1000}:${GID:-1000}"
working_dir: /src
environment:
- HUGO_ENABLEGITINFO=false
command: server --renderToMemory --printPathWarnings --printI18nWarnings --bind=0.0.0.0 -p 1313 --liveReloadPort 80 --noBuildLock --enableGitInfo=false
Expand All @@ -45,7 +46,7 @@ services:
- "./:/src"
- "../hugo-web-product-module/:/hugo-web-product-module:ro"
healthcheck:
test: ["CMD-SHELL", "curl -s http://localhost:1313 > /dev/null || exit 1"]
test: ["CMD", "sh", "-c", "netstat -tnl | grep -q ':1313'"]
interval: 5s
timeout: 2s
retries: 10
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ module github.com/deckhouse/website-development-platform

go 1.24.2

require github.com/deckhouse/hugo-web-product-module v0.1.12 // indirect
require github.com/deckhouse/hugo-web-product-module v0.1.14 // indirect
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github.com/deckhouse/hugo-web-product-module v0.1.12 h1:8oNyPv9t9l5pdO1IfubAQN8HNm8zZtEMQGhk4xdQdY0=
github.com/deckhouse/hugo-web-product-module v0.1.12/go.mod h1:iLVlLSCkbOoi7RjYm5RjwAQi+Whs6DjSumhaH1GBjqw=
github.com/deckhouse/hugo-web-product-module v0.1.14 h1:rARZ9FwiO47Em0bhEzH2g+FMBUyvjk0GRL9O/PgnADs=
github.com/deckhouse/hugo-web-product-module v0.1.14/go.mod h1:iLVlLSCkbOoi7RjYm5RjwAQi+Whs6DjSumhaH1GBjqw=
2 changes: 1 addition & 1 deletion werf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project: deckhouse-web-development-platform
---

image: web-artifacts
fromImage: ghcr.io/gohugoio/hugo:v0.159.2
fromImage: ghcr.io/gohugoio/hugo:v0.161.1
final: false
shell:
setup:
Expand Down
Loading