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.

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