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.

454 lines
23 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. - ConnectionString=${ESHOP_AZURE_CATALOG_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.TenantAShippingInformationDb;User Id=sa;Password=Pass@word}
  72. ports:
  73. - "5117:80"
  74. tenantbshippinginformation:
  75. environment:
  76. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  77. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  78. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  79. - AzureServiceBusEnabled=False
  80. - ConnectionString=${ESHOP_AZURE_CATALOG_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.TenantBShippingInformationDb;User Id=sa;Password=Pass@word}
  81. ports:
  82. - "5118:80"
  83. basket.api:
  84. environment:
  85. - ASPNETCORE_ENVIRONMENT=Development
  86. - ASPNETCORE_URLS=http://0.0.0.0:80
  87. - ConnectionString=${ESHOP_AZURE_REDIS_BASKET_DB:-basket.data}
  88. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  89. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  90. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  91. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  92. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  93. - AzureServiceBusEnabled=False
  94. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  95. - OrchestratorType=${ORCHESTRATOR_TYPE}
  96. - UseLoadTest=${USE_LOADTEST:-False}
  97. ports:
  98. - "5103:80" # Important: In a production environment your should remove the external port (5103) kept here for microservice debugging purposes.
  99. # The API Gateway redirects and access through the internal port (80).
  100. catalog.api:
  101. environment:
  102. - ASPNETCORE_ENVIRONMENT=Development
  103. - ASPNETCORE_URLS=http://0.0.0.0:80
  104. - ConnectionString=${ESHOP_AZURE_CATALOG_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word}
  105. - 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.
  106. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  107. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  108. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  109. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_CATALOG_NAME}
  110. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_CATALOG_KEY}
  111. - UseCustomizationData=True
  112. - AzureServiceBusEnabled=False
  113. - AzureStorageEnabled=False
  114. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  115. - OrchestratorType=${ORCHESTRATOR_TYPE}
  116. ports:
  117. - "5101:80" # Important: In a production environment your should remove the external port (5101) kept here for microservice debugging purposes.
  118. # The API Gateway redirects and access through the internal port (80).
  119. ordering.api:
  120. environment:
  121. - ASPNETCORE_ENVIRONMENT=Development
  122. - ASPNETCORE_URLS=http://0.0.0.0:80
  123. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  124. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  125. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  126. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  127. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  128. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  129. - UseCustomizationData=True
  130. - AzureServiceBusEnabled=False
  131. - CheckUpdateTime=30000
  132. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  133. - OrchestratorType=${ORCHESTRATOR_TYPE}
  134. - UseLoadTest=${USE_LOADTEST:-False}
  135. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  136. - Serilog__MinimumLevel__Override__Ordering.API=Verbose
  137. ports:
  138. - "5102:80" # Important: In a production environment your should remove the external port (5102) kept here for microservice debugging purposes.
  139. # The API Gateway redirects and access through the internal port (80).
  140. ordering.backgroundtasks:
  141. environment:
  142. - ASPNETCORE_ENVIRONMENT=Development
  143. - ASPNETCORE_URLS=http://0.0.0.0:80
  144. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  145. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  146. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  147. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  148. - UseCustomizationData=True
  149. - AzureServiceBusEnabled=False
  150. - CheckUpdateTime=30000
  151. - GracePeriodTime=1
  152. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  153. - OrchestratorType=${ORCHESTRATOR_TYPE}
  154. - UseLoadTest=${USE_LOADTEST:-False}
  155. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  156. ports:
  157. - "5111:80"
  158. marketing.api:
  159. environment:
  160. - ASPNETCORE_ENVIRONMENT=Development
  161. - ASPNETCORE_URLS=http://0.0.0.0:80
  162. - ConnectionString=${ESHOP_AZURE_MARKETING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id=sa;Password=Pass@word}
  163. - MongoConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  164. - MongoDatabase=MarketingDb
  165. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  166. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  167. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  168. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  169. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  170. - CampaignDetailFunctionUri=${ESHOP_AZUREFUNC_CAMPAIGN_DETAILS_URI}
  171. - PicBaseUrl=${ESHOP_AZURE_STORAGE_MARKETING_URL:-http://localhost:5110/api/v1/campaigns/[0]/pic/}
  172. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_MARKETING_NAME}
  173. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_MARKETING_KEY}
  174. - AzureServiceBusEnabled=False
  175. - AzureStorageEnabled=False
  176. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  177. - OrchestratorType=${ORCHESTRATOR_TYPE}
  178. - UseLoadTest=${USE_LOADTEST:-False}
  179. ports:
  180. - "5110:80" # Important: In a production environment your should remove the external port (5110) kept here for microservice debugging purposes.
  181. # The API Gateway redirects and access through the internal port (80).
  182. payment.api:
  183. environment:
  184. - ASPNETCORE_ENVIRONMENT=Development
  185. - ASPNETCORE_URLS=http://0.0.0.0:80
  186. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  187. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  188. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  189. - AzureServiceBusEnabled=False
  190. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  191. - OrchestratorType=${ORCHESTRATOR_TYPE}
  192. - Serilog__MinimumLevel__Override__Payment.API.IntegrationEvents.EventHandling=Verbose
  193. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  194. ports:
  195. - "5108:80" # Important: In a production environment your should remove the external port (5108) kept here for microservice debugging purposes.
  196. # The API Gateway redirects and access through the internal port (80).
  197. locations.api:
  198. environment:
  199. - ASPNETCORE_ENVIRONMENT=Development
  200. - ASPNETCORE_URLS=http://0.0.0.0:80
  201. - ConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  202. - Database=LocationsDb
  203. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  204. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  205. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  206. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  207. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  208. - AzureServiceBusEnabled=False
  209. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  210. - OrchestratorType=${ORCHESTRATOR_TYPE}
  211. - UseLoadTest=${USE_LOADTEST:-False}
  212. ports:
  213. - "5109:80" # Important: In a production environment your should remove the external port (5109) kept here for microservice debugging purposes.
  214. # The API Gateway redirects and access through the internal port (80).
  215. webhooks.api:
  216. environment:
  217. - ASPNETCORE_ENVIRONMENT=Development
  218. - ASPNETCORE_URLS=http://0.0.0.0:80
  219. - ConnectionString=${ESHOP_AZURE_WEBHOOKS_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.WebhooksDb;User Id=sa;Password=Pass@word}
  220. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  221. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  222. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  223. - IdentityUrl=http://identity.api
  224. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  225. ports:
  226. - "5113:80" # Important: In a production environment your should remove the external port (5109) kept here for microservice debugging purposes.
  227. # The API Gateway redirects and access through the internal port (80).
  228. mobileshoppingapigw:
  229. environment:
  230. - ASPNETCORE_ENVIRONMENT=Development
  231. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  232. - urls__basket=http://basket.api
  233. - urls__catalog=http://catalog.api
  234. - urls__orders=http://ordering.api
  235. - urls__identity=http://identity.api
  236. - CatalogUrlHC=http://catalog.api/hc
  237. - OrderingUrlHC=http://ordering.api/hc
  238. - IdentityUrlHC=http://identity.api/hc
  239. - BasketUrlHC=http://basket.api/hc
  240. - MarketingUrlHC=http://marketing.api/hc
  241. - PaymentUrlHC=http://payment.api/hc
  242. - LocationUrlHC=http://locations.api/hc
  243. ports:
  244. - "5200:80"
  245. volumes:
  246. - ./src/ApiGateways/Mobile.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  247. mobilemarketingapigw:
  248. environment:
  249. - ASPNETCORE_ENVIRONMENT=Development
  250. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  251. - CatalogUrlHC=http://catalog.api/hc
  252. - OrderingUrlHC=http://ordering.api/hc
  253. - IdentityUrlHC=http://identity.api/hc
  254. - BasketUrlHC=http://basket.api/hc
  255. - MarketingUrlHC=http://marketing.api/hc
  256. - PaymentUrlHC=http://payment.api/hc
  257. - LocationUrlHC=http://locations.api/hc
  258. ports:
  259. - "5201:80"
  260. volumes:
  261. - ./src/ApiGateways/Mobile.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  262. webshoppingapigw:
  263. environment:
  264. - ASPNETCORE_ENVIRONMENT=Development
  265. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  266. - CatalogUrlHC=http://catalog.api/hc
  267. - OrderingUrlHC=http://ordering.api/hc
  268. - IdentityUrlHC=http://identity.api/hc
  269. - BasketUrlHC=http://basket.api/hc
  270. - MarketingUrlHC=http://marketing.api/hc
  271. - PaymentUrlHC=http://payment.api/hc
  272. - LocationUrlHC=http://locations.api/hc
  273. ports:
  274. - "5202:80"
  275. volumes:
  276. - ./src/ApiGateways/Web.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  277. webmarketingapigw:
  278. environment:
  279. - ASPNETCORE_ENVIRONMENT=Development
  280. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  281. - CatalogUrlHC=http://catalog.api/hc
  282. - OrderingUrlHC=http://ordering.api/hc
  283. - IdentityUrlHC=http://identity.api/hc
  284. - BasketUrlHC=http://basket.api/hc
  285. - MarketingUrlHC=http://marketing.api/hc
  286. - PaymentUrlHC=http://payment.api/hc
  287. - LocationUrlHC=http://locations.api/hc
  288. ports:
  289. - "5203:80"
  290. volumes:
  291. - ./src/ApiGateways/Web.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  292. mobileshoppingagg:
  293. environment:
  294. - ASPNETCORE_ENVIRONMENT=Development
  295. - urls__basket=http://basket.api
  296. - urls__catalog=http://catalog.api
  297. - urls__orders=http://ordering.api
  298. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  299. - CatalogUrlHC=http://catalog.api/hc
  300. - OrderingUrlHC=http://ordering.api/hc
  301. - IdentityUrlHC=http://identity.api/hc
  302. - BasketUrlHC=http://basket.api/hc
  303. - MarketingUrlHC=http://marketing.api/hc
  304. - PaymentUrlHC=http://payment.api/hc
  305. - LocationUrlHC=http://locations.api/hc
  306. ports:
  307. - "5120:80" # Important: In a production environment your should remove the external port (5120) kept here for microservice debugging purposes.
  308. # The API Gateway redirects and access through the internal port (80).
  309. webshoppingagg:
  310. environment:
  311. - ASPNETCORE_ENVIRONMENT=Development
  312. - urls__basket=http://basket.api
  313. - urls__catalog=http://catalog.api
  314. - urls__orders=http://ordering.api
  315. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  316. - CatalogUrlHC=http://catalog.api/hc
  317. - OrderingUrlHC=http://ordering.api/hc
  318. - IdentityUrlHC=http://identity.api/hc
  319. - BasketUrlHC=http://basket.api/hc
  320. - MarketingUrlHC=http://marketing.api/hc
  321. - PaymentUrlHC=http://payment.api/hc
  322. - LocationUrlHC=http://locations.api/hc
  323. ports:
  324. - "5121:80" # Important: In a production environment your should remove the external port (5121) kept here for microservice debugging purposes.
  325. # The API Gateway redirects and access through the internal port (80).
  326. ordering.signalrhub:
  327. environment:
  328. - ASPNETCORE_ENVIRONMENT=Development
  329. - ASPNETCORE_URLS=http://0.0.0.0:80
  330. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  331. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  332. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  333. - AzureServiceBusEnabled=False
  334. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  335. - OrchestratorType=${ORCHESTRATOR_TYPE}
  336. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  337. ports:
  338. - "5112:80"
  339. webstatus:
  340. environment:
  341. - ASPNETCORE_ENVIRONMENT=Production
  342. - ASPNETCORE_URLS=http://0.0.0.0:80
  343. - HealthChecksUI__HealthChecks__0__Name=WebMVC HTTP Check
  344. - HealthChecksUI__HealthChecks__0__Uri=http://webmvc/hc
  345. - HealthChecksUI__HealthChecks__1__Name=WebSPA HTTP Check
  346. - HealthChecksUI__HealthChecks__1__Uri=http://webspa/hc
  347. - HealthChecksUI__HealthChecks__2__Name=Web Shopping Aggregator GW HTTP Check
  348. - HealthChecksUI__HealthChecks__2__Uri=http://webshoppingagg/hc
  349. - HealthChecksUI__HealthChecks__3__Name=Mobile Shopping Aggregator HTTP Check
  350. - HealthChecksUI__HealthChecks__3__Uri=http://mobileshoppingagg/hc
  351. - HealthChecksUI__HealthChecks__4__Name=Mobile Shopping API GW HTTP Check
  352. - HealthChecksUI__HealthChecks__4__Uri=http://mobileshoppingapigw/hc
  353. - HealthChecksUI__HealthChecks__5__Name=Mobile Marketing API GW HTTP Check
  354. - HealthChecksUI__HealthChecks__5__Uri=http://mobilemarketingapigw/hc
  355. - HealthChecksUI__HealthChecks__6__Name=Web Shopping API GW HTTP Check
  356. - HealthChecksUI__HealthChecks__6__Uri=http://webshoppingapigw/hc
  357. - HealthChecksUI__HealthChecks__7__Name=Web Marketing API GW HTTP Check
  358. - HealthChecksUI__HealthChecks__7__Uri=http://webmarketingapigw/hc
  359. - HealthChecksUI__HealthChecks__8__Name=Ordering HTTP Check
  360. - HealthChecksUI__HealthChecks__8__Uri=http://ordering.api/hc
  361. - HealthChecksUI__HealthChecks__9__Name=Ordering HTTP Background Check
  362. - HealthChecksUI__HealthChecks__9__Uri=http://ordering.backgroundtasks/hc
  363. - HealthChecksUI__HealthChecks__10__Name=Basket HTTP Check
  364. - HealthChecksUI__HealthChecks__10__Uri=http://basket.api/hc
  365. - HealthChecksUI__HealthChecks__11__Name=Catalog HTTP Check
  366. - HealthChecksUI__HealthChecks__11__Uri=http://catalog.api/hc
  367. - HealthChecksUI__HealthChecks__12__Name=Identity HTTP Check
  368. - HealthChecksUI__HealthChecks__12__Uri=http://identity.api/hc
  369. - HealthChecksUI__HealthChecks__13__Name=Marketing HTTP Check
  370. - HealthChecksUI__HealthChecks__13__Uri=http://marketing.api/hc
  371. - HealthChecksUI__HealthChecks__14__Name=Locations HTTP Check
  372. - HealthChecksUI__HealthChecks__14__Uri=http://locations.api/hc
  373. - HealthChecksUI__HealthChecks__15__Name=Payments HTTP Check
  374. - HealthChecksUI__HealthChecks__15__Uri=http://payment.api/hc
  375. - HealthChecksUI__HealthChecks__16__Name=Ordering SignalRHub HTTP Check
  376. - HealthChecksUI__HealthChecks__16__Uri=http://ordering.signalrhub/hc
  377. - OrderingBackgroundTasksUrl=http://ordering.backgroundtasks/hc
  378. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  379. - OrchestratorType=${ORCHESTRATOR_TYPE}
  380. ports:
  381. - "5107:80"
  382. webspa:
  383. environment:
  384. - ASPNETCORE_ENVIRONMENT=Development
  385. - ASPNETCORE_URLS=http://0.0.0.0:80
  386. - 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.
  387. - PurchaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  388. - MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5203
  389. - PurchaseUrlHC=http://webshoppingapigw/hc
  390. - MarketingUrlHC=http://webmarketingapigw/hc
  391. - IdentityUrlHC=http://identity.api/hc
  392. - UseCustomizationData=True
  393. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  394. - OrchestratorType=${ORCHESTRATOR_TYPE}
  395. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  396. ports:
  397. - "5104:80"
  398. webmvc:
  399. environment:
  400. - ASPNETCORE_ENVIRONMENT=Development
  401. - ASPNETCORE_URLS=http://0.0.0.0:80
  402. - PurchaseUrl=http://webshoppingapigw
  403. - 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.
  404. - MarketingUrl=http://webmarketingapigw
  405. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  406. - IdentityUrlHC=http://identity.api/hc
  407. - PurchaseUrlHC=http://webshoppingapigw/hc
  408. - MarketingUrlHC=http://webmarketingapigw/hc
  409. - UseCustomizationData=True
  410. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  411. - OrchestratorType=${ORCHESTRATOR_TYPE}
  412. - UseLoadTest=${USE_LOADTEST:-False}
  413. ports:
  414. - "5100:80"
  415. webhooks.client:
  416. environment:
  417. - ASPNETCORE_URLS=http://0.0.0.0:80
  418. - Token=6168DB8D-DC58-4094-AF24-483278923590 # Webhooks are registered with this token (any value is valid) but the client won't check it
  419. - IdentityUrl=http://10.0.75.1:5105
  420. - CallBackUrl=http://localhost:5114
  421. - WebhooksUrl=http://webhooks.api
  422. - SelfUrl=http://webhooks.client/
  423. ports:
  424. - "5114:80"