Guest User

Untitled

a guest
Feb 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. version: "2"
  2. services:
  3. app:
  4. container_name: "app"
  5. restart: always
  6. build: .
  7. environment:
  8. - MONGO_URI=mongodb://mongo/catstore
  9. - PORT=3000
  10. - NODE_ENV=production
  11. ports:
  12. - "3000:3000"
  13. links:
  14. - mongo
  15. depends_on:
  16. - mongo
  17. command: npm start
  18.  
  19. mongo:
  20. container_name: "mongo"
  21. image: mongo
  22. ports:
  23. - "27017:27017"
  24. command: mongod --smallfiles --logpath=/dev/null # --quiet
Add Comment
Please, Sign In to add comment