Initial commit

This commit is contained in:
2026-08-08 11:41:41 +02:00
commit 487cc8e2dd
20 changed files with 201 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
name: Website powered by Hugo
services:
build:
image: ghcr.io/gohugoio/hugo:latest
command: build --minify
volumes:
- ".:/project"
user: 1000:1000
environment:
HUGO_ENVIRONMENT: production
server:
image: ghcr.io/gohugoio/hugo:latest
command: server --bind 0.0.0.0 -M --buildDrafts --buildFuture
volumes:
- ".:/project"
- "../../../../local/Code/hugo_bootstrap_theme:/hugo_bootstrap_theme"
- "../../../../local/Code/hugo_cookie_consent:/hugo_cookie_consent"
ports:
- "127.0.0.1:1313:1313"
user: 1000:1000
environment:
HUGO_ENVIRONMENT: development
TZ: Europe/Berlin