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.

416 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. - UseCustomizationData=True
  46. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  47. - OrchestratorType=${ORCHESTRATOR_TYPE}
  48. ports:
  49. - "5105:80"
  50. basket.api:
  51. environment:
  52. - ASPNETCORE_ENVIRONMENT=Development
  53. - ASPNETCORE_URLS=http://0.0.0.0:80
  54. - ConnectionString=${ESHOP_AZURE_REDIS_BASKET_DB:-basket.data}
  55. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  56. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  57. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  58. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  59. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  60. - AzureServiceBusEnabled=False
  61. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  62. - OrchestratorType=${ORCHESTRATOR_TYPE}
  63. - UseLoadTest=${USE_LOADTEST:-False}
  64. ports:
  65. - "5103:80" # Important: In a production environment your should remove the external port (5103) kept here for microservice debugging purposes.
  66. # The API Gateway redirects and access through the internal port (80).
  67. catalog.api:
  68. environment:
  69. - ASPNETCORE_ENVIRONMENT=Development
  70. - ASPNETCORE_URLS=http://0.0.0.0:80
  71. - ConnectionString=${ESHOP_AZURE_CATALOG_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word}
  72. - 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.
  73. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  74. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  75. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  76. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_CATALOG_NAME}
  77. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_CATALOG_KEY}
  78. - UseCustomizationData=True
  79. - AzureServiceBusEnabled=False
  80. - AzureStorageEnabled=False
  81. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  82. - OrchestratorType=${ORCHESTRATOR_TYPE}
  83. ports:
  84. - "5101:80" # Important: In a production environment your should remove the external port (5101) kept here for microservice debugging purposes.
  85. # The API Gateway redirects and access through the internal port (80).
  86. ordering.api:
  87. environment:
  88. - ASPNETCORE_ENVIRONMENT=Development
  89. - ASPNETCORE_URLS=http://0.0.0.0:80
  90. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  91. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  92. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  93. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  94. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  95. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  96. - UseCustomizationData=True
  97. - AzureServiceBusEnabled=False
  98. - CheckUpdateTime=30000
  99. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  100. - OrchestratorType=${ORCHESTRATOR_TYPE}
  101. - UseLoadTest=${USE_LOADTEST:-False}
  102. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  103. ports:
  104. - "5102:80" # Important: In a production environment your should remove the external port (5102) kept here for microservice debugging purposes.
  105. # The API Gateway redirects and access through the internal port (80).
  106. ordering.backgroundtasks:
  107. environment:
  108. - ASPNETCORE_ENVIRONMENT=Development
  109. - ASPNETCORE_URLS=http://0.0.0.0:80
  110. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  111. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  112. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  113. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  114. - UseCustomizationData=True
  115. - AzureServiceBusEnabled=False
  116. - CheckUpdateTime=30000
  117. - GracePeriodTime=1
  118. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  119. - OrchestratorType=${ORCHESTRATOR_TYPE}
  120. - UseLoadTest=${USE_LOADTEST:-False}
  121. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  122. ports:
  123. - "5111:80"
  124. marketing.api:
  125. environment:
  126. - ASPNETCORE_ENVIRONMENT=Development
  127. - ASPNETCORE_URLS=http://0.0.0.0:80
  128. - ConnectionString=${ESHOP_AZURE_MARKETING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id=sa;Password=Pass@word}
  129. - MongoConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  130. - MongoDatabase=MarketingDb
  131. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  132. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  133. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  134. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  135. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  136. - CampaignDetailFunctionUri=${ESHOP_AZUREFUNC_CAMPAIGN_DETAILS_URI}
  137. - PicBaseUrl=${ESHOP_AZURE_STORAGE_MARKETING_URL:-http://localhost:5110/api/v1/campaigns/[0]/pic/}
  138. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_MARKETING_NAME}
  139. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_MARKETING_KEY}
  140. - AzureServiceBusEnabled=False
  141. - AzureStorageEnabled=False
  142. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  143. - OrchestratorType=${ORCHESTRATOR_TYPE}
  144. - UseLoadTest=${USE_LOADTEST:-False}
  145. ports:
  146. - "5110:80" # Important: In a production environment your should remove the external port (5110) kept here for microservice debugging purposes.
  147. # The API Gateway redirects and access through the internal port (80).
  148. payment.api:
  149. environment:
  150. - ASPNETCORE_ENVIRONMENT=Development
  151. - ASPNETCORE_URLS=http://0.0.0.0:80
  152. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  153. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  154. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  155. - AzureServiceBusEnabled=False
  156. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  157. - OrchestratorType=${ORCHESTRATOR_TYPE}
  158. - Serilog__MinimumLevel__Override__Payment.API.IntegrationEvents.EventHandling=Verbose
  159. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  160. ports:
  161. - "5108:80" # Important: In a production environment your should remove the external port (5108) kept here for microservice debugging purposes.
  162. # The API Gateway redirects and access through the internal port (80).
  163. locations.api:
  164. environment:
  165. - ASPNETCORE_ENVIRONMENT=Development
  166. - ASPNETCORE_URLS=http://0.0.0.0:80
  167. - ConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  168. - Database=LocationsDb
  169. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  170. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  171. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  172. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  173. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  174. - AzureServiceBusEnabled=False
  175. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  176. - OrchestratorType=${ORCHESTRATOR_TYPE}
  177. - UseLoadTest=${USE_LOADTEST:-False}
  178. ports:
  179. - "5109:80" # Important: In a production environment your should remove the external port (5109) kept here for microservice debugging purposes.
  180. # The API Gateway redirects and access through the internal port (80).
  181. webhooks.api:
  182. environment:
  183. - ASPNETCORE_ENVIRONMENT=Development
  184. - ASPNETCORE_URLS=http://0.0.0.0:80
  185. - ConnectionString=${ESHOP_AZURE_WEBHOOKS_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.WebhooksDb;User Id=sa;Password=Pass@word}
  186. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  187. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  188. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  189. - IdentityUrl=http://identity.api
  190. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  191. ports:
  192. - "5113:80" # Important: In a production environment your should remove the external port (5109) kept here for microservice debugging purposes.
  193. # The API Gateway redirects and access through the internal port (80).
  194. mobileshoppingapigw:
  195. environment:
  196. - ASPNETCORE_ENVIRONMENT=Development
  197. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  198. - urls__basket=http://basket.api
  199. - urls__catalog=http://catalog.api
  200. - urls__orders=http://ordering.api
  201. - urls__identity=http://identity.api
  202. - CatalogUrlHC=http://catalog.api/hc
  203. - OrderingUrlHC=http://ordering.api/hc
  204. - IdentityUrlHC=http://identity.api/hc
  205. - BasketUrlHC=http://basket.api/hc
  206. - MarketingUrlHC=http://marketing.api/hc
  207. - PaymentUrlHC=http://payment.api/hc
  208. - LocationUrlHC=http://locations.api/hc
  209. ports:
  210. - "5200:80"
  211. volumes:
  212. - ./src/ApiGateways/Mobile.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  213. mobilemarketingapigw:
  214. environment:
  215. - ASPNETCORE_ENVIRONMENT=Development
  216. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  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. - "5201:80"
  226. volumes:
  227. - ./src/ApiGateways/Mobile.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  228. webshoppingapigw:
  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. - "5202:80"
  241. volumes:
  242. - ./src/ApiGateways/Web.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  243. webmarketingapigw:
  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. - "5203:80"
  256. volumes:
  257. - ./src/ApiGateways/Web.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  258. mobileshoppingagg:
  259. environment:
  260. - ASPNETCORE_ENVIRONMENT=Development
  261. - urls__basket=http://basket.api
  262. - urls__catalog=http://catalog.api
  263. - urls__orders=http://ordering.api
  264. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  265. - CatalogUrlHC=http://catalog.api/hc
  266. - OrderingUrlHC=http://ordering.api/hc
  267. - IdentityUrlHC=http://identity.api/hc
  268. - BasketUrlHC=http://basket.api/hc
  269. - MarketingUrlHC=http://marketing.api/hc
  270. - PaymentUrlHC=http://payment.api/hc
  271. - LocationUrlHC=http://locations.api/hc
  272. ports:
  273. - "5120:80" # Important: In a production environment your should remove the external port (5120) kept here for microservice debugging purposes.
  274. # The API Gateway redirects and access through the internal port (80).
  275. webshoppingagg:
  276. environment:
  277. - ASPNETCORE_ENVIRONMENT=Development
  278. - urls__basket=http://basket.api
  279. - urls__catalog=http://catalog.api
  280. - urls__orders=http://ordering.api
  281. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  282. - CatalogUrlHC=http://catalog.api/hc
  283. - OrderingUrlHC=http://ordering.api/hc
  284. - IdentityUrlHC=http://identity.api/hc
  285. - BasketUrlHC=http://basket.api/hc
  286. - MarketingUrlHC=http://marketing.api/hc
  287. - PaymentUrlHC=http://payment.api/hc
  288. - LocationUrlHC=http://locations.api/hc
  289. ports:
  290. - "5121:80" # Important: In a production environment your should remove the external port (5121) kept here for microservice debugging purposes.
  291. # The API Gateway redirects and access through the internal port (80).
  292. ordering.signalrhub:
  293. environment:
  294. - ASPNETCORE_ENVIRONMENT=Development
  295. - ASPNETCORE_URLS=http://0.0.0.0:80
  296. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  297. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  298. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  299. - AzureServiceBusEnabled=False
  300. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  301. - OrchestratorType=${ORCHESTRATOR_TYPE}
  302. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  303. ports:
  304. - "5112:80"
  305. webstatus:
  306. environment:
  307. - ASPNETCORE_ENVIRONMENT=Production
  308. - ASPNETCORE_URLS=http://0.0.0.0:80
  309. - HealthChecks-UI__HealthChecks__0__Name=WebMVC HTTP Check
  310. - HealthChecks-UI__HealthChecks__0__Uri=http://webmvc/hc
  311. - HealthChecks-UI__HealthChecks__1__Name=WebSPA HTTP Check
  312. - HealthChecks-UI__HealthChecks__1__Uri=http://webspa/hc
  313. - HealthChecks-UI__HealthChecks__2__Name=Web Shopping Aggregator GW HTTP Check
  314. - HealthChecks-UI__HealthChecks__2__Uri=http://webshoppingagg/hc
  315. - HealthChecks-UI__HealthChecks__3__Name=Mobile Shopping Aggregator HTTP Check
  316. - HealthChecks-UI__HealthChecks__3__Uri=http://mobileshoppingagg/hc
  317. - HealthChecks-UI__HealthChecks__4__Name=Mobile Shopping API GW HTTP Check
  318. - HealthChecks-UI__HealthChecks__4__Uri=http://mobileshoppingapigw/hc
  319. - HealthChecks-UI__HealthChecks__5__Name=Mobile Marketing API GW HTTP Check
  320. - HealthChecks-UI__HealthChecks__5__Uri=http://mobilemarketingapigw/hc
  321. - HealthChecks-UI__HealthChecks__6__Name=Web Shopping API GW HTTP Check
  322. - HealthChecks-UI__HealthChecks__6__Uri=http://webshoppingapigw/hc
  323. - HealthChecks-UI__HealthChecks__7__Name=Web Marketing API GW HTTP Check
  324. - HealthChecks-UI__HealthChecks__7__Uri=http://webmarketingapigw/hc
  325. - HealthChecks-UI__HealthChecks__8__Name=Ordering HTTP Check
  326. - HealthChecks-UI__HealthChecks__8__Uri=http://ordering.api/hc
  327. - HealthChecks-UI__HealthChecks__9__Name=Ordering HTTP Background Check
  328. - HealthChecks-UI__HealthChecks__9__Uri=http://ordering.backgroundtasks/hc
  329. - HealthChecks-UI__HealthChecks__10__Name=Basket HTTP Check
  330. - HealthChecks-UI__HealthChecks__10__Uri=http://basket.api/hc
  331. - HealthChecks-UI__HealthChecks__11__Name=Catalog HTTP Check
  332. - HealthChecks-UI__HealthChecks__11__Uri=http://catalog.api/hc
  333. - HealthChecks-UI__HealthChecks__12__Name=Identity HTTP Check
  334. - HealthChecks-UI__HealthChecks__12__Uri=http://identity.api/hc
  335. - HealthChecks-UI__HealthChecks__13__Name=Marketing HTTP Check
  336. - HealthChecks-UI__HealthChecks__13__Uri=http://marketing.api/hc
  337. - HealthChecks-UI__HealthChecks__14__Name=Locations HTTP Check
  338. - HealthChecks-UI__HealthChecks__14__Uri=http://locations.api/hc
  339. - HealthChecks-UI__HealthChecks__15__Name=Payments HTTP Check
  340. - HealthChecks-UI__HealthChecks__15__Uri=http://payment.api/hc
  341. - HealthChecks-UI__HealthChecks__16__Name=Ordering SignalRHub HTTP Check
  342. - HealthChecks-UI__HealthChecks__16__Uri=http://ordering.signalrhub/hc
  343. - OrderingBackgroundTasksUrl=http://ordering.backgroundtasks/hc
  344. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  345. - OrchestratorType=${ORCHESTRATOR_TYPE}
  346. ports:
  347. - "5107:80"
  348. webspa:
  349. environment:
  350. - ASPNETCORE_ENVIRONMENT=Development
  351. - ASPNETCORE_URLS=http://0.0.0.0:80
  352. - 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.
  353. - PurchaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  354. - MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5203
  355. - PurchaseUrlHC=http://webshoppingapigw/hc
  356. - MarketingUrlHC=http://webmarketingapigw/hc
  357. - IdentityUrlHC=http://identity.api/hc
  358. - UseCustomizationData=True
  359. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  360. - OrchestratorType=${ORCHESTRATOR_TYPE}
  361. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  362. ports:
  363. - "5104:80"
  364. webmvc:
  365. environment:
  366. - ASPNETCORE_ENVIRONMENT=Development
  367. - ASPNETCORE_URLS=http://0.0.0.0:80
  368. - PurchaseUrl=http://webshoppingapigw
  369. - 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.
  370. - MarketingUrl=http://webmarketingapigw
  371. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  372. - IdentityUrlHC=http://identity.api/hc
  373. - PurchaseUrlHC=http://webshoppingapigw/hc
  374. - MarketingUrlHC=http://webmarketingapigw/hc
  375. - UseCustomizationData=True
  376. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  377. - OrchestratorType=${ORCHESTRATOR_TYPE}
  378. - UseLoadTest=${USE_LOADTEST:-False}
  379. ports:
  380. - "5100:80"
  381. webhooks.client:
  382. environment:
  383. - ASPNETCORE_URLS=http://0.0.0.0:80
  384. - Token=6168DB8D-DC58-4094-AF24-483278923590 # Webhooks are registered with this token (any value is valid) but the client won't check it
  385. - IdentityUrl=http://10.0.75.1:5105
  386. - CallBackUrl=http://localhost:5114
  387. - WebhooksUrl=http://webhooks.api
  388. - SelfUrl=http://webhooks.client/
  389. ports:
  390. - "5114:80"