10 lines
253 B
YAML
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 |