Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. version: "2"
  2. services:
  3. meteor:
  4. build:
  5. context: .
  6. dockerfile: Dockerfile.development
  7. ports:
  8. - "3000:3000"
  9. volumes:
  10. - ./client:/nodeapp/client
  11. - ./imports:/nodeapp/imports
  12. - ./packages:/nodeapp/packages
  13. - ./private:/nodeapp/private
  14. - ./public:/nodeapp/public
  15. - ./server:/nodeapp/server
  16. links:
  17. - mongo
  18. depends_on:
  19. - "mongo"
  20. environment:
  21. - MONGO_URL=mongodb://mongo:27017/meteor
  22. #- METEOR_PROFILE=1
  23. #- METEOR_LOG=debug meteor --verbose
  24. mongo:
  25. image: mongo:3.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement