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.

77 lines
3.4 KiB

  1. version: '2'
  2. services:
  3. webmvc:
  4. environment:
  5. - CatalogUrl=http://catalog.api:5101
  6. - OrderingUrl=http://ordering.api:5102
  7. #- IdentityUrl=http://13.88.8.119:5105 #Remote: VM Needs to have public access at 5105.
  8. - IdentityUrl=http://identity.service:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
  9. - BasketUrl=http://basket.api:5103
  10. ports:
  11. - "5100:5100"
  12. basket.api:
  13. environment:
  14. - ASPNETCORE_ENVIRONMENT=Development
  15. - ConnectionString=basket.data
  16. #- identityUrl=http://13.88.8.119:5105 #Remote: VM Needs to have public access at 5105.
  17. - identityUrl=http://identity.service:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
  18. ports:
  19. - "5103:5103"
  20. catalog.api:
  21. environment:
  22. - ASPNETCORE_ENVIRONMENT=Development
  23. - ConnectionString=Server=sql.data;Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word
  24. #- ExternalCatalogBaseUrl=http://13.88.8.119:5101 #Remote: VM Needs to have public access at 5105.
  25. - ExternalCatalogBaseUrl=http://localhost:5101 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
  26. ports:
  27. - "5101:5101"
  28. identity.api:
  29. environment:
  30. - ASPNETCORE_ENVIRONMENT=Development
  31. - SpaClient=http://localhost:5104
  32. - ConnectionStrings__DefaultConnection=Server=sql.data;Database=Microsoft.eShopOnContainers.Service.IdentityDb;User Id=sa;Password=Pass@word
  33. #- MvcClient=http://13.88.8.119:5100 #Remote: VM Needs to have public access at 5105.
  34. - MvcClient=http://localhost:5100 #Local: You need to open your local dev-machine firewall at range 5100-5105.
  35. ports:
  36. - "5105:5105"
  37. ordering.api:
  38. environment:
  39. - ASPNETCORE_ENVIRONMENT=Development
  40. - ConnectionString=Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word
  41. #- identityUrl=http://13.88.8.119:5105 #Remote: VM Needs to have public access at 5105.
  42. - identityUrl=http://identity.service:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
  43. ports:
  44. - "5102:5102"
  45. eshoponcontainers.webspa:
  46. environment:
  47. - CatalogUrl=http://localhost:5101
  48. - OrderingUrl=http://localhost:5102
  49. #- IdentityUrl=http://13.88.8.119:5105 #Remote: VM Needs to have public access at 5105.
  50. - IdentityUrl=http://localhost:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
  51. - BasketUrl=http://localhost:5103
  52. ports:
  53. - "5104:5104"
  54. webmvc:
  55. environment:
  56. - ASPNETCORE_ENVIRONMENT=Development
  57. - CatalogUrl=http://catalog.api:5101
  58. - OrderingUrl=http://ordering.api:5102
  59. #- IdentityUrl=http://13.88.8.119:5105 #Remote: VM Needs to have public access at 5105.
  60. - IdentityUrl=http://10.0.75.1:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
  61. - BasketUrl=http://basket.api:5103
  62. ports:
  63. - "5100:5100"
  64. sql.data:
  65. environment:
  66. - SA_PASSWORD=Pass@word
  67. - ACCEPT_EULA=Y
  68. ports:
  69. - "5433:1433"