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.

443 lines
22 KiB

6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
6 years ago
6 years ago
  1. version: '3.4'
  2. # The default docker-compose.override file can use the "localhost" as the external name for testing web apps within the same dev machine.
  3. # The ESHOP_EXTERNAL_DNS_NAME_OR_IP environment variable is taken, by default, from the ".env" file defined like:
  4. # ESHOP_EXTERNAL_DNS_NAME_OR_IP=localhost
  5. # but values present in the environment vars at runtime will always override those defined inside the .env file
  6. # An external IP or DNS name has to be used (instead localhost and the 10.0.75.1 IP) when testing the Web apps and the Xamarin apps from remote machines/devices using the same WiFi, for instance.
  7. services:
  8. seq:
  9. environment:
  10. - ACCEPT_EULA=Y
  11. ports:
  12. - "5340:80"
  13. sql.data:
  14. environment:
  15. - SA_PASSWORD=Pass@word
  16. - ACCEPT_EULA=Y
  17. ports:
  18. - "5433:1433" # Important: In a production environment your should remove the external port
  19. nosql.data:
  20. ports:
  21. - "27017:27017" # Important: In a production environment your should remove the external port
  22. basket.data:
  23. ports:
  24. - "6379:6379" # Important: In a production environment your should remove the external port
  25. rabbitmq:
  26. ports:
  27. - "15672:15672" # Important: In a production environment your should remove the external port
  28. - "5672:5672" # Important: In a production environment your should remove the external port
  29. identity.api:
  30. environment:
  31. - ASPNETCORE_ENVIRONMENT=Development
  32. - ASPNETCORE_URLS=http://0.0.0.0:80
  33. - SpaClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5104
  34. - XamarinCallback=http://${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}:5105/xamarincallback #localhost do not work for UWP login, so we have to use "external" IP always
  35. - ConnectionString=${ESHOP_AZURE_IDENTITY_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Service.IdentityDb;User Id=sa;Password=Pass@word}
  36. - MvcClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5100 #Local: You need to open your local dev-machine firewall at range 5100-5110.
  37. - LocationApiClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5109
  38. - MarketingApiClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5110
  39. - BasketApiClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5103
  40. - OrderingApiClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5102
  41. - MobileShoppingAggClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5120
  42. - WebShoppingAggClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5121
  43. - WebhooksApiClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5113
  44. - WebhooksWebClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5114
  45. - TenantManagerApiClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5115
  46. - UseCustomizationData=True
  47. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  48. - OrchestratorType=${ORCHESTRATOR_TYPE}
  49. ports:
  50. - "5105:80"
  51. tenantmanager:
  52. environment:
  53. - ConnectionString=${ESHOP_AZURE_CATALOG_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.TenantManagerDb;User Id=sa;Password=Pass@word}
  54. ports:
  55. - "5115:80"
  56. tenantacustomisation:
  57. environment:
  58. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  59. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  60. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  61. - AzureServiceBusEnabled=False
  62. - ConnectionString=${ESHOP_AZURE_CATALOG_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.TenantADb;User Id=sa;Password=Pass@word}
  63. ports:
  64. - "5116:80"
  65. tenantashippinginformation:
  66. environment:
  67. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  68. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  69. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  70. - AzureServiceBusEnabled=False
  71. ports:
  72. - "5117:80"
  73. basket.api:
  74. environment:
  75. - ASPNETCORE_ENVIRONMENT=Development
  76. - ASPNETCORE_URLS=http://0.0.0.0:80
  77. - ConnectionString=${ESHOP_AZURE_REDIS_BASKET_DB:-basket.data}
  78. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  79. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  80. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  81. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  82. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  83. - AzureServiceBusEnabled=False
  84. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  85. - OrchestratorType=${ORCHESTRATOR_TYPE}
  86. - UseLoadTest=${USE_LOADTEST:-False}
  87. ports:
  88. - "5103:80" # Important: In a production environment your should remove the external port (5103) kept here for microservice debugging purposes.
  89. # The API Gateway redirects and access through the internal port (80).
  90. catalog.api:
  91. environment:
  92. - ASPNETCORE_ENVIRONMENT=Development
  93. - ASPNETCORE_URLS=http://0.0.0.0:80
  94. - ConnectionString=${ESHOP_AZURE_CATALOG_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word}
  95. - PicBaseUrl=${ESHOP_AZURE_STORAGE_CATALOG_URL:-http://localhost:5202/api/v1/c/catalog/items/[0]/pic/} #Local: You need to open your local dev-machine firewall at range 5100-5110.
  96. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  97. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  98. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  99. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_CATALOG_NAME}
  100. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_CATALOG_KEY}
  101. - UseCustomizationData=True
  102. - AzureServiceBusEnabled=False
  103. - AzureStorageEnabled=False
  104. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  105. - OrchestratorType=${ORCHESTRATOR_TYPE}
  106. ports:
  107. - "5101:80" # Important: In a production environment your should remove the external port (5101) kept here for microservice debugging purposes.
  108. # The API Gateway redirects and access through the internal port (80).
  109. ordering.api:
  110. environment:
  111. - ASPNETCORE_ENVIRONMENT=Development
  112. - ASPNETCORE_URLS=http://0.0.0.0:80
  113. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  114. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  115. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  116. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  117. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  118. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  119. - UseCustomizationData=True
  120. - AzureServiceBusEnabled=False
  121. - CheckUpdateTime=30000
  122. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  123. - OrchestratorType=${ORCHESTRATOR_TYPE}
  124. - UseLoadTest=${USE_LOADTEST:-False}
  125. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  126. - Serilog__MinimumLevel__Override__Ordering.API=Verbose
  127. ports:
  128. - "5102:80" # Important: In a production environment your should remove the external port (5102) kept here for microservice debugging purposes.
  129. # The API Gateway redirects and access through the internal port (80).
  130. ordering.backgroundtasks:
  131. environment:
  132. - ASPNETCORE_ENVIRONMENT=Development
  133. - ASPNETCORE_URLS=http://0.0.0.0:80
  134. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  135. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  136. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  137. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  138. - UseCustomizationData=True
  139. - AzureServiceBusEnabled=False
  140. - CheckUpdateTime=30000
  141. - GracePeriodTime=1
  142. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  143. - OrchestratorType=${ORCHESTRATOR_TYPE}
  144. - UseLoadTest=${USE_LOADTEST:-False}
  145. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  146. ports:
  147. - "5111:80"
  148. marketing.api:
  149. environment:
  150. - ASPNETCORE_ENVIRONMENT=Development
  151. - ASPNETCORE_URLS=http://0.0.0.0:80
  152. - ConnectionString=${ESHOP_AZURE_MARKETING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id=sa;Password=Pass@word}
  153. - MongoConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  154. - MongoDatabase=MarketingDb
  155. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  156. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  157. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  158. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  159. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  160. - CampaignDetailFunctionUri=${ESHOP_AZUREFUNC_CAMPAIGN_DETAILS_URI}
  161. - PicBaseUrl=${ESHOP_AZURE_STORAGE_MARKETING_URL:-http://localhost:5110/api/v1/campaigns/[0]/pic/}
  162. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_MARKETING_NAME}
  163. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_MARKETING_KEY}
  164. - AzureServiceBusEnabled=False
  165. - AzureStorageEnabled=False
  166. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  167. - OrchestratorType=${ORCHESTRATOR_TYPE}
  168. - UseLoadTest=${USE_LOADTEST:-False}
  169. ports:
  170. - "5110:80" # Important: In a production environment your should remove the external port (5110) kept here for microservice debugging purposes.
  171. # The API Gateway redirects and access through the internal port (80).
  172. payment.api:
  173. environment:
  174. - ASPNETCORE_ENVIRONMENT=Development
  175. - ASPNETCORE_URLS=http://0.0.0.0:80
  176. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  177. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  178. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  179. - AzureServiceBusEnabled=False
  180. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  181. - OrchestratorType=${ORCHESTRATOR_TYPE}
  182. - Serilog__MinimumLevel__Override__Payment.API.IntegrationEvents.EventHandling=Verbose
  183. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  184. ports:
  185. - "5108:80" # Important: In a production environment your should remove the external port (5108) kept here for microservice debugging purposes.
  186. # The API Gateway redirects and access through the internal port (80).
  187. locations.api:
  188. environment:
  189. - ASPNETCORE_ENVIRONMENT=Development
  190. - ASPNETCORE_URLS=http://0.0.0.0:80
  191. - ConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  192. - Database=LocationsDb
  193. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  194. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  195. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  196. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  197. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  198. - AzureServiceBusEnabled=False
  199. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  200. - OrchestratorType=${ORCHESTRATOR_TYPE}
  201. - UseLoadTest=${USE_LOADTEST:-False}
  202. ports:
  203. - "5109:80" # Important: In a production environment your should remove the external port (5109) kept here for microservice debugging purposes.
  204. # The API Gateway redirects and access through the internal port (80).
  205. webhooks.api:
  206. environment:
  207. - ASPNETCORE_ENVIRONMENT=Development
  208. - ASPNETCORE_URLS=http://0.0.0.0:80
  209. - ConnectionString=${ESHOP_AZURE_WEBHOOKS_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.WebhooksDb;User Id=sa;Password=Pass@word}
  210. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  211. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  212. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  213. - IdentityUrl=http://identity.api
  214. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  215. ports:
  216. - "5113:80" # Important: In a production environment your should remove the external port (5109) kept here for microservice debugging purposes.
  217. # The API Gateway redirects and access through the internal port (80).
  218. mobileshoppingapigw:
  219. environment:
  220. - ASPNETCORE_ENVIRONMENT=Development
  221. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  222. - urls__basket=http://basket.api
  223. - urls__catalog=http://catalog.api
  224. - urls__orders=http://ordering.api
  225. - urls__identity=http://identity.api
  226. - CatalogUrlHC=http://catalog.api/hc
  227. - OrderingUrlHC=http://ordering.api/hc
  228. - IdentityUrlHC=http://identity.api/hc
  229. - BasketUrlHC=http://basket.api/hc
  230. - MarketingUrlHC=http://marketing.api/hc
  231. - PaymentUrlHC=http://payment.api/hc
  232. - LocationUrlHC=http://locations.api/hc
  233. ports:
  234. - "5200:80"
  235. volumes:
  236. - ./src/ApiGateways/Mobile.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  237. mobilemarketingapigw:
  238. environment:
  239. - ASPNETCORE_ENVIRONMENT=Development
  240. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  241. - CatalogUrlHC=http://catalog.api/hc
  242. - OrderingUrlHC=http://ordering.api/hc
  243. - IdentityUrlHC=http://identity.api/hc
  244. - BasketUrlHC=http://basket.api/hc
  245. - MarketingUrlHC=http://marketing.api/hc
  246. - PaymentUrlHC=http://payment.api/hc
  247. - LocationUrlHC=http://locations.api/hc
  248. ports:
  249. - "5201:80"
  250. volumes:
  251. - ./src/ApiGateways/Mobile.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  252. webshoppingapigw:
  253. environment:
  254. - ASPNETCORE_ENVIRONMENT=Development
  255. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  256. - CatalogUrlHC=http://catalog.api/hc
  257. - OrderingUrlHC=http://ordering.api/hc
  258. - IdentityUrlHC=http://identity.api/hc
  259. - BasketUrlHC=http://basket.api/hc
  260. - MarketingUrlHC=http://marketing.api/hc
  261. - PaymentUrlHC=http://payment.api/hc
  262. - LocationUrlHC=http://locations.api/hc
  263. ports:
  264. - "5202:80"
  265. volumes:
  266. - ./src/ApiGateways/Web.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  267. webmarketingapigw:
  268. environment:
  269. - ASPNETCORE_ENVIRONMENT=Development
  270. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  271. - CatalogUrlHC=http://catalog.api/hc
  272. - OrderingUrlHC=http://ordering.api/hc
  273. - IdentityUrlHC=http://identity.api/hc
  274. - BasketUrlHC=http://basket.api/hc
  275. - MarketingUrlHC=http://marketing.api/hc
  276. - PaymentUrlHC=http://payment.api/hc
  277. - LocationUrlHC=http://locations.api/hc
  278. ports:
  279. - "5203:80"
  280. volumes:
  281. - ./src/ApiGateways/Web.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  282. mobileshoppingagg:
  283. environment:
  284. - ASPNETCORE_ENVIRONMENT=Development
  285. - urls__basket=http://basket.api
  286. - urls__catalog=http://catalog.api
  287. - urls__orders=http://ordering.api
  288. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  289. - CatalogUrlHC=http://catalog.api/hc
  290. - OrderingUrlHC=http://ordering.api/hc
  291. - IdentityUrlHC=http://identity.api/hc
  292. - BasketUrlHC=http://basket.api/hc
  293. - MarketingUrlHC=http://marketing.api/hc
  294. - PaymentUrlHC=http://payment.api/hc
  295. - LocationUrlHC=http://locations.api/hc
  296. ports:
  297. - "5120:80" # Important: In a production environment your should remove the external port (5120) kept here for microservice debugging purposes.
  298. # The API Gateway redirects and access through the internal port (80).
  299. webshoppingagg:
  300. environment:
  301. - ASPNETCORE_ENVIRONMENT=Development
  302. - urls__basket=http://basket.api
  303. - urls__catalog=http://catalog.api
  304. - urls__orders=http://ordering.api
  305. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  306. - CatalogUrlHC=http://catalog.api/hc
  307. - OrderingUrlHC=http://ordering.api/hc
  308. - IdentityUrlHC=http://identity.api/hc
  309. - BasketUrlHC=http://basket.api/hc
  310. - MarketingUrlHC=http://marketing.api/hc
  311. - PaymentUrlHC=http://payment.api/hc
  312. - LocationUrlHC=http://locations.api/hc
  313. ports:
  314. - "5121:80" # Important: In a production environment your should remove the external port (5121) kept here for microservice debugging purposes.
  315. # The API Gateway redirects and access through the internal port (80).
  316. ordering.signalrhub:
  317. environment:
  318. - ASPNETCORE_ENVIRONMENT=Development
  319. - ASPNETCORE_URLS=http://0.0.0.0:80
  320. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  321. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  322. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  323. - AzureServiceBusEnabled=False
  324. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  325. - OrchestratorType=${ORCHESTRATOR_TYPE}
  326. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  327. ports:
  328. - "5112:80"
  329. webstatus:
  330. environment:
  331. - ASPNETCORE_ENVIRONMENT=Production
  332. - ASPNETCORE_URLS=http://0.0.0.0:80
  333. - HealthChecksUI__HealthChecks__0__Name=WebMVC HTTP Check
  334. - HealthChecksUI__HealthChecks__0__Uri=http://webmvc/hc
  335. - HealthChecksUI__HealthChecks__1__Name=WebSPA HTTP Check
  336. - HealthChecksUI__HealthChecks__1__Uri=http://webspa/hc
  337. - HealthChecksUI__HealthChecks__2__Name=Web Shopping Aggregator GW HTTP Check
  338. - HealthChecksUI__HealthChecks__2__Uri=http://webshoppingagg/hc
  339. - HealthChecksUI__HealthChecks__3__Name=Mobile Shopping Aggregator HTTP Check
  340. - HealthChecksUI__HealthChecks__3__Uri=http://mobileshoppingagg/hc
  341. - HealthChecksUI__HealthChecks__4__Name=Mobile Shopping API GW HTTP Check
  342. - HealthChecksUI__HealthChecks__4__Uri=http://mobileshoppingapigw/hc
  343. - HealthChecksUI__HealthChecks__5__Name=Mobile Marketing API GW HTTP Check
  344. - HealthChecksUI__HealthChecks__5__Uri=http://mobilemarketingapigw/hc
  345. - HealthChecksUI__HealthChecks__6__Name=Web Shopping API GW HTTP Check
  346. - HealthChecksUI__HealthChecks__6__Uri=http://webshoppingapigw/hc
  347. - HealthChecksUI__HealthChecks__7__Name=Web Marketing API GW HTTP Check
  348. - HealthChecksUI__HealthChecks__7__Uri=http://webmarketingapigw/hc
  349. - HealthChecksUI__HealthChecks__8__Name=Ordering HTTP Check
  350. - HealthChecksUI__HealthChecks__8__Uri=http://ordering.api/hc
  351. - HealthChecksUI__HealthChecks__9__Name=Ordering HTTP Background Check
  352. - HealthChecksUI__HealthChecks__9__Uri=http://ordering.backgroundtasks/hc
  353. - HealthChecksUI__HealthChecks__10__Name=Basket HTTP Check
  354. - HealthChecksUI__HealthChecks__10__Uri=http://basket.api/hc
  355. - HealthChecksUI__HealthChecks__11__Name=Catalog HTTP Check
  356. - HealthChecksUI__HealthChecks__11__Uri=http://catalog.api/hc
  357. - HealthChecksUI__HealthChecks__12__Name=Identity HTTP Check
  358. - HealthChecksUI__HealthChecks__12__Uri=http://identity.api/hc
  359. - HealthChecksUI__HealthChecks__13__Name=Marketing HTTP Check
  360. - HealthChecksUI__HealthChecks__13__Uri=http://marketing.api/hc
  361. - HealthChecksUI__HealthChecks__14__Name=Locations HTTP Check
  362. - HealthChecksUI__HealthChecks__14__Uri=http://locations.api/hc
  363. - HealthChecksUI__HealthChecks__15__Name=Payments HTTP Check
  364. - HealthChecksUI__HealthChecks__15__Uri=http://payment.api/hc
  365. - HealthChecksUI__HealthChecks__16__Name=Ordering SignalRHub HTTP Check
  366. - HealthChecksUI__HealthChecks__16__Uri=http://ordering.signalrhub/hc
  367. - OrderingBackgroundTasksUrl=http://ordering.backgroundtasks/hc
  368. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  369. - OrchestratorType=${ORCHESTRATOR_TYPE}
  370. ports:
  371. - "5107:80"
  372. webspa:
  373. environment:
  374. - ASPNETCORE_ENVIRONMENT=Development
  375. - ASPNETCORE_URLS=http://0.0.0.0:80
  376. - IdentityUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
  377. - PurchaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  378. - MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5203
  379. - PurchaseUrlHC=http://webshoppingapigw/hc
  380. - MarketingUrlHC=http://webmarketingapigw/hc
  381. - IdentityUrlHC=http://identity.api/hc
  382. - UseCustomizationData=True
  383. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  384. - OrchestratorType=${ORCHESTRATOR_TYPE}
  385. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  386. ports:
  387. - "5104:80"
  388. webmvc:
  389. environment:
  390. - ASPNETCORE_ENVIRONMENT=Development
  391. - ASPNETCORE_URLS=http://0.0.0.0:80
  392. - PurchaseUrl=http://webshoppingapigw
  393. - IdentityUrl=http://10.0.75.1:5105 # Local Mac: Use http://docker.for.mac.localhost:5105 || Local Windows: Use 10.0.75.1 in a "Docker for Windows" environment, if using "localhost" from browser. || #Remote access: Use ${ESHOP_EXTERNAL_DNS_NAME_OR_IP} if using external IP or DNS name from browser.
  394. - MarketingUrl=http://webmarketingapigw
  395. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  396. - IdentityUrlHC=http://identity.api/hc
  397. - PurchaseUrlHC=http://webshoppingapigw/hc
  398. - MarketingUrlHC=http://webmarketingapigw/hc
  399. - UseCustomizationData=True
  400. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  401. - OrchestratorType=${ORCHESTRATOR_TYPE}
  402. - UseLoadTest=${USE_LOADTEST:-False}
  403. ports:
  404. - "5100:80"
  405. webhooks.client:
  406. environment:
  407. - ASPNETCORE_URLS=http://0.0.0.0:80
  408. - Token=6168DB8D-DC58-4094-AF24-483278923590 # Webhooks are registered with this token (any value is valid) but the client won't check it
  409. - IdentityUrl=http://10.0.75.1:5105
  410. - CallBackUrl=http://localhost:5114
  411. - WebhooksUrl=http://webhooks.api
  412. - SelfUrl=http://webhooks.client/
  413. ports:
  414. - "5114:80"