Initial commit: Hugo site with PaperMod theme
This commit is contained in:
11
compose.yml
Normal file
11
compose.yml
Normal 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
|
Reference in New Issue
Block a user