Files
blog/docker-compose.yml
2025-12-11 16:16:05 +01:00

10 lines
253 B
YAML

services:
hugo:
image: hugomods/hugo:latest
command: hugo server --bind 0.0.0.0 --baseURL http://localhost --buildDrafts --buildFuture
volumes:
- .:/src
ports:
- "1313:1313"
working_dir: /src
restart: unless-stopped