Initial commit: Hugo site with PaperMod theme

This commit is contained in:
2025-05-13 21:59:36 +02:00
commit 15a6807518
44 changed files with 3544 additions and 0 deletions

11
compose.yml Normal file
View File

@ -0,0 +1,11 @@
services:
hugo:
image: ghcr.io/gohugoio/hugo:latest # Official Hugo image
container_name: hugo-blog
platform: linux/amd64 # Use emulation for M4 chip
volumes:
- ./site:/src
ports:
- "1313:1313"
command: server -D --bind=0.0.0.0 --source=/src
restart: unless-stopped