2020-02-10 20:38:11 +02:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
app:
|
|
|
|
build: .
|
2020-02-18 23:09:38 +02:00
|
|
|
working_dir: /blog
|
2020-02-11 00:59:13 +02:00
|
|
|
command: hugo server -v --bind "0.0.0.0" --port 1313 --watch -t soho
|
2020-02-10 20:38:11 +02:00
|
|
|
ports:
|
|
|
|
- "1313:1313"
|
|
|
|
volumes:
|
2020-02-18 23:09:38 +02:00
|
|
|
- ./exampleSite:/blog
|
|
|
|
- .:/blog/themes/soho
|