redoc/docker-compose.yml
Skyler Lewis a08c3b962e Use a small docker image (600MB savings) (#271) by @alairock
node 7                666 MB
node 7-alpine    59.1 MB
2017-05-24 12:36:23 +03:00

9 lines
162 B
YAML

dev:
image: node:7-alpine
command: sh -c "npm install; npm start -- --host=0.0.0.0"
ports:
- "9000:9000"
volumes:
- "./:/code"
working_dir: /code