1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 02:31:31 +00:00
dockerfiles/hugo/docker-compose.yml

13 lines
229 B
YAML
Raw Normal View History

2015-10-18 15:42:14 +00:00
hugo:
image: vimagick/hugo-arm
command: >
server --bind=0.0.0.0
--port=80
2015-10-18 16:37:26 +00:00
--baseUrl=http://blog.datageek.info/
2015-10-18 15:42:14 +00:00
--watch
ports:
- "80:80"
volumes:
- ./www:/www
restart: always