1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/hugo/docker-compose.yml
2015-10-19 00:33:01 +08:00

13 lines
224 B
YAML

hugo:
image: vimagick/hugo-arm
command: >
server --bind=0.0.0.0
--port=80
--baseUrl=http://192.168.1.230/
--watch
ports:
- "80:80"
volumes:
- ./www:/www
restart: always