Files
meanTorrent/docker-compose.yml
Liran Tal abd73073df fix(docker): updating the Dockerfile and docker-compose.yml for up to date versions of a MEAN.JS development environment setup
* updating mongodb to use a pinned version

* updating for quiet instalations
2016-03-20 16:09:33 +02:00

25 lines
386 B
YAML

web:
restart: always
build: .
command: npm start
links:
- db
ports:
- "3000:3000"
- "5858:5858"
- "35729:35729"
environment:
- NODE_ENV=development
volumes:
- ./:/opt/mean.js
- /opt/mean.js/node_modules
- /opt/mean.js/public
- /opt/mean.js/uploads
db:
restart: always
image: mongo:3.2
ports:
- "27017:27017"
volumes:
- db:/data/db