2020-02-10 20:38:11 +02:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
app:
|
|
|
|
build: .
|
2020-02-11 00:59:13 +02:00
|
|
|
working_dir: /go/src/github.com/alexandrevicenzi/soho/hugoBasicExample
|
|
|
|
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-11 00:59:13 +02:00
|
|
|
- ./hugoBasicExample:/go/src/github.com/alexandrevicenzi/soho/hugoBasicExample
|
|
|
|
- .:/go/src/github.com/alexandrevicenzi/soho/hugoBasicExample/themes/soho
|