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.

433 lines
22 KiB

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