Guest User

Untitled

a guest
Mar 22nd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. version: "3"
  2. services:
  3. mongo:
  4. image: mongo
  5. volumes:
  6. - mongo:/data/db
  7. networks:
  8. backend:
  9. aliases:
  10. - mongo
  11. ports:
  12. - "27017:27017"
  13.  
  14. api:
  15. build:
  16. context: ./
  17. dockerfile: Dockerfile
  18. image: adnanrahic/boilerplate-api:local
  19. volumes:
  20. - ./:/usr/src/app
  21. - node_modules:/usr/src/app/node_modules
  22. networks:
  23. - backend
  24. depends_on:
  25. - mongo
  26. ports:
  27. - "3000:3000"
  28.  
  29. networks:
  30. backend:
  31.  
  32. volumes:
  33. mongo:
  34. node_modules:
Add Comment
Please, Sign In to add comment