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.

424 lines
22 KiB

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