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.

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