You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.5 KiB

5 years ago
6 years ago
6 years ago
  1. version: '3.4'
  2. # ONLY NEEDED WHEN RUNNING WINDOWS CONTAINERS
  3. #
  4. # This file sets the containers' environment variables:
  5. #
  6. # - EventBusUerName
  7. # - EventBusPassword
  8. #
  9. # To the default username & password used in the spring2/rabbitmq image.
  10. #
  11. # If you are using any other rabbitmq image with any other username/pwd then you can:
  12. #
  13. # Set your shell environment variables:
  14. # - ESHOP_SERVICE_BUS_USERNAME
  15. # - ESHOP_SERVICE_BUS_PASSWORD
  16. #
  17. # With the appropiate values (note that you can use .env file also) AND DO NOT USE THIS FILE when launching windows container:
  18. #
  19. # docker-compose -f docker-compose-windows.yml -f docker-compose.override.yml up
  20. # INSTEAD OF
  21. # docker-compose -f docker-compose-windows.yml -f docker-compose.override.yml -f docker-compose.override.windows.yml up
  22. services:
  23. basket.api:
  24. environment:
  25. - EventBusUserName=admin
  26. - EventBusPassword=password
  27. catalog.api:
  28. environment:
  29. - EventBusUserName=admin
  30. - EventBusPassword=password
  31. ordering.api:
  32. environment:
  33. - EventBusUserName=admin
  34. - EventBusPassword=password
  35. ordering.backgroundtasks:
  36. environment:
  37. - EventBusUserName=admin
  38. - EventBusPassword=password
  39. payment.api:
  40. environment:
  41. - EventBusUserName=admin
  42. - EventBusPassword=password
  43. locations.api:
  44. environment:
  45. - EventBusUserName=admin
  46. - EventBusPassword=password
  47. ordering.signalrhub:
  48. environment:
  49. - EventBusUserName=admin
  50. - EventBusPassword=password