Advertisement
Guest User

Untitled

a guest
Apr 5th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. ```YAML
  2. version: "3"
  3. services:
  4. DESTINY:
  5. image: "app-mock"
  6. ports:
  7. - "8090:8090"
  8. networks:
  9. - integration-tier
  10. MULE:
  11. image: "mule"
  12. volumes:
  13. - "./mule/logs:/opt/mule-standalone-3.7.0/logs"
  14. ports:
  15. - "8000:8000"
  16. - "8001:8000"
  17. - "8002:8002"
  18. - "8003:8003"
  19. - "8004:8004"
  20. depends_on:
  21. - "RABBITMQ"
  22. - "DESTINY"
  23. - "WIREMOCK-ENRICHER"
  24. networks:
  25. - integration-tier
  26. RABBITMQ:
  27. image: "rabbitmq-withqueues"
  28. environment:
  29. RABBITMQ_ERLANG_COOKIE: "PUT-YOUR-OWN-COOKIE-HERE"
  30. RABBITMQ_DEFAULT_USER: "YOUR USER"
  31. RABBITMQ_DEFAULT_PASS: "YOUR PASSWD"
  32. RABBITMQ_DEFAULT_VHOST: "/"
  33. ports:
  34. - "15672:15672"
  35. - "5672:5672"
  36. volumes:
  37. - "./rabbitmq/enabled_plugins:/etc/rabbitmq/enabled_plugins"
  38. networks:
  39. - integration-tier
  40.  
  41. WIREMOCK-ENRICHER:
  42. image: "wiremock-mocks"
  43. ports:
  44. - "8080:8080"
  45. networks:
  46. - integration-tier
  47.  
  48. networks:
  49. integration-tier:
  50. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement