Guest User

Untitled

a guest
Sep 24th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. mongo:
  2. image: mongo:3.2
  3. command: --nojournal
  4. ports:
  5. - "27017:27017"
  6. expose:
  7. - "27017"
  8.  
  9. orion:
  10. image: fiware/orion
  11. links:
  12. - mongo
  13. ports:
  14. - "1026:1026"
  15. command: -dbhost mongo
  16. expose:
  17. - "1026"
  18.  
  19. rabbit:
  20. image: rabbitmq
  21. ports:
  22. - "5672:5672"
  23. expose:
  24. - "5672"
  25.  
  26. iotagent:
  27. image: fiware/iotagent-json
  28. links:
  29. - rabbit
  30. - mongo
  31. - orion
  32. ports:
  33. - "4041:4041"
  34. expose:
  35. - "4041"
Add Comment
Please, Sign In to add comment