Files
blog/docker-compose.yml
T
daniel e57c4aa403
Build and Deploy / build-and-deploy (push) Failing after 8s
Use modules, new layout, and hugo_cookie_consent.
2026-06-14 23:16:20 +02:00

20 lines
479 B
YAML

services:
build:
image: ghcr.io/gohugoio/hugo
command: build
volumes:
- ".:/project"
user: 1000:1000
server:
image: ghcr.io/gohugoio/hugo
command: server --bind 0.0.0.0 --buildDrafts --buildFuture --environment development
volumes:
- ".:/project"
- "../hugo_cookie_consent:/hugo_cookie_consent"
ports:
- "127.0.0.1:1313:1313"
user: 1000:1000
environment:
ENVIRONMENT: development
TZ: Europe/Berlin