18 lines
418 B
YAML
18 lines
418 B
YAML
services:
|
|
build:
|
|
image: hugomods/hugo:exts
|
|
volumes:
|
|
- .:/src
|
|
working_dir: /src
|
|
command: hugo --minify --gc --cleanDestinationDir
|
|
|
|
preview:
|
|
image: hugomods/hugo:exts
|
|
volumes:
|
|
- .:/src
|
|
working_dir: /src
|
|
command: hugo server --bind 0.0.0.0 --port 1317 --baseURL http://localhost:1317 --disableFastRender
|
|
ports:
|
|
- "127.0.0.1:1317:1317"
|
|
restart: unless-stopped
|