blob: 0cf6b825f6844a0225735eb7b53f9f323193f10f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
version: '3'
services:
app:
build: .
working_dir: /go/src/github.com/alexandrevicenzi/soho/exampleSite
command: hugo server -v --bind "0.0.0.0" --port 1313 --watch -t soho
ports:
- "1313:1313"
volumes:
- ./exampleSite:/go/src/github.com/alexandrevicenzi/soho/exampleSite
- .:/go/src/github.com/alexandrevicenzi/soho/exampleSite/themes/soho
|