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.

388 lines
20 KiB

6 years ago
6 years ago
6 years ago
6 years ago
7 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. - UseCustomizationData=True
  44. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  45. - OrchestratorType=${ORCHESTRATOR_TYPE}
  46. ports:
  47. - "5105:80"
  48. basket.api:
  49. environment:
  50. - ASPNETCORE_ENVIRONMENT=Development
  51. - ASPNETCORE_URLS=http://0.0.0.0:80
  52. - ConnectionString=${ESHOP_AZURE_REDIS_BASKET_DB:-basket.data}
  53. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  54. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  55. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  56. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  57. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  58. - AzureServiceBusEnabled=False
  59. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  60. - OrchestratorType=${ORCHESTRATOR_TYPE}
  61. - UseLoadTest=${USE_LOADTEST:-False}
  62. ports:
  63. - "5103:80" # Important: In a production environment your should remove the external port (5103) kept here for microservice debugging purposes.
  64. # The API Gateway redirects and access through the internal port (80).
  65. catalog.api:
  66. environment:
  67. - ASPNETCORE_ENVIRONMENT=Development
  68. - ASPNETCORE_URLS=http://0.0.0.0:80
  69. - ConnectionString=${ESHOP_AZURE_CATALOG_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word}
  70. - 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.
  71. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  72. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  73. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  74. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_CATALOG_NAME}
  75. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_CATALOG_KEY}
  76. - UseCustomizationData=True
  77. - AzureServiceBusEnabled=False
  78. - AzureStorageEnabled=False
  79. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  80. - OrchestratorType=${ORCHESTRATOR_TYPE}
  81. ports:
  82. - "5101:80" # Important: In a production environment your should remove the external port (5101) kept here for microservice debugging purposes.
  83. # The API Gateway redirects and access through the internal port (80).
  84. ordering.api:
  85. environment:
  86. - ASPNETCORE_ENVIRONMENT=Development
  87. - ASPNETCORE_URLS=http://0.0.0.0:80
  88. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  89. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  90. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  91. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  92. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  93. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  94. - UseCustomizationData=True
  95. - AzureServiceBusEnabled=False
  96. - CheckUpdateTime=30000
  97. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  98. - OrchestratorType=${ORCHESTRATOR_TYPE}
  99. - UseLoadTest=${USE_LOADTEST:-False}
  100. ports:
  101. - "5102:80" # Important: In a production environment your should remove the external port (5102) kept here for microservice debugging purposes.
  102. # The API Gateway redirects and access through the internal port (80).
  103. ordering.backgroundtasks:
  104. environment:
  105. - ASPNETCORE_ENVIRONMENT=Development
  106. - ASPNETCORE_URLS=http://0.0.0.0:80
  107. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  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. - GracePeriodTime=1
  115. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  116. - OrchestratorType=${ORCHESTRATOR_TYPE}
  117. - UseLoadTest=${USE_LOADTEST:-False}
  118. ports:
  119. - "5111:80"
  120. marketing.api:
  121. environment:
  122. - ASPNETCORE_ENVIRONMENT=Development
  123. - ASPNETCORE_URLS=http://0.0.0.0:80
  124. - ConnectionString=${ESHOP_AZURE_MARKETING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id=sa;Password=Pass@word}
  125. - MongoConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  126. - MongoDatabase=MarketingDb
  127. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  128. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  129. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  130. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  131. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  132. - CampaignDetailFunctionUri=${ESHOP_AZUREFUNC_CAMPAIGN_DETAILS_URI}
  133. - PicBaseUrl=${ESHOP_AZURE_STORAGE_MARKETING_URL:-http://localhost:5110/api/v1/campaigns/[0]/pic/}
  134. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_MARKETING_NAME}
  135. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_MARKETING_KEY}
  136. - AzureServiceBusEnabled=False
  137. - AzureStorageEnabled=False
  138. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  139. - OrchestratorType=${ORCHESTRATOR_TYPE}
  140. - UseLoadTest=${USE_LOADTEST:-False}
  141. ports:
  142. - "5110:80" # Important: In a production environment your should remove the external port (5110) kept here for microservice debugging purposes.
  143. # The API Gateway redirects and access through the internal port (80).
  144. payment.api:
  145. environment:
  146. - ASPNETCORE_ENVIRONMENT=Development
  147. - ASPNETCORE_URLS=http://0.0.0.0:80
  148. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  149. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  150. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  151. - AzureServiceBusEnabled=False
  152. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  153. - OrchestratorType=${ORCHESTRATOR_TYPE}
  154. ports:
  155. - "5108:80" # Important: In a production environment your should remove the external port (5108) kept here for microservice debugging purposes.
  156. # The API Gateway redirects and access through the internal port (80).
  157. locations.api:
  158. environment:
  159. - ASPNETCORE_ENVIRONMENT=Development
  160. - ASPNETCORE_URLS=http://0.0.0.0:80
  161. - ConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  162. - Database=LocationsDb
  163. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  164. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  165. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  166. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  167. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  168. - AzureServiceBusEnabled=False
  169. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  170. - OrchestratorType=${ORCHESTRATOR_TYPE}
  171. - UseLoadTest=${USE_LOADTEST:-False}
  172. ports:
  173. - "5109:80" # Important: In a production environment your should remove the external port (5109) kept here for microservice debugging purposes.
  174. # The API Gateway redirects and access through the internal port (80).
  175. mobileshoppingapigw:
  176. environment:
  177. - ASPNETCORE_ENVIRONMENT=Development
  178. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  179. - urls__basket=http://basket.api
  180. - urls__catalog=http://catalog.api
  181. - urls__orders=http://ordering.api
  182. - urls__identity=http://identity.api
  183. - CatalogUrlHC=http://catalog.api/hc
  184. - OrderingUrlHC=http://ordering.api/hc
  185. - IdentityUrlHC=http://identity.api/hc
  186. - BasketUrlHC=http://basket.api/hc
  187. - MarketingUrlHC=http://marketing.api/hc
  188. - PaymentUrlHC=http://payment.api/hc
  189. - LocationUrlHC=http://locations.api/hc
  190. ports:
  191. - "5200:80"
  192. volumes:
  193. - ./src/ApiGateways/Mobile.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  194. mobilemarketingapigw:
  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. - 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. - "5201:80"
  207. volumes:
  208. - ./src/ApiGateways/Mobile.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  209. webshoppingapigw:
  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. - "5202:80"
  222. volumes:
  223. - ./src/ApiGateways/Web.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  224. webmarketingapigw:
  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. - "5203:80"
  237. volumes:
  238. - ./src/ApiGateways/Web.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  239. mobileshoppingagg:
  240. environment:
  241. - ASPNETCORE_ENVIRONMENT=Development
  242. - urls__basket=http://basket.api
  243. - urls__catalog=http://catalog.api
  244. - urls__orders=http://ordering.api
  245. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  246. - CatalogUrlHC=http://catalog.api/hc
  247. - OrderingUrlHC=http://ordering.api/hc
  248. - IdentityUrlHC=http://identity.api/hc
  249. - BasketUrlHC=http://basket.api/hc
  250. - MarketingUrlHC=http://marketing.api/hc
  251. - PaymentUrlHC=http://payment.api/hc
  252. - LocationUrlHC=http://locations.api/hc
  253. ports:
  254. - "5120:80" # Important: In a production environment your should remove the external port (5120) kept here for microservice debugging purposes.
  255. # The API Gateway redirects and access through the internal port (80).
  256. webshoppingagg:
  257. environment:
  258. - ASPNETCORE_ENVIRONMENT=Development
  259. - urls__basket=http://basket.api
  260. - urls__catalog=http://catalog.api
  261. - urls__orders=http://ordering.api
  262. - urls__identity=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. - "5121:80" # Important: In a production environment your should remove the external port (5121) kept here for microservice debugging purposes.
  272. # The API Gateway redirects and access through the internal port (80).
  273. ordering.signalrhub:
  274. environment:
  275. - ASPNETCORE_ENVIRONMENT=Development
  276. - ASPNETCORE_URLS=http://0.0.0.0:80
  277. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  278. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  279. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  280. - AzureServiceBusEnabled=False
  281. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  282. - OrchestratorType=${ORCHESTRATOR_TYPE}
  283. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  284. ports:
  285. - "5112:80"
  286. webstatus:
  287. environment:
  288. - ASPNETCORE_ENVIRONMENT=Development
  289. - ASPNETCORE_URLS=http://0.0.0.0:80
  290. - HealthChecks-UI__HealthChecks__1__Name=WebMVC HTTP Check
  291. - HealthChecks-UI__HealthChecks__1__Uri=http://webmvc/hc
  292. - HealthChecks-UI__HealthChecks__2__Name=WebSPA HTTP Check
  293. - HealthChecks-UI__HealthChecks__2__Uri=http://webspa/hc
  294. - HealthChecks-UI__HealthChecks__3__Name=Web Shopping Aggregator GW HTTP Check
  295. - HealthChecks-UI__HealthChecks__3__Uri=http://webshoppingagg/hc
  296. - HealthChecks-UI__HealthChecks__4__Name=Mobile Shopping Aggregator HTTP Check
  297. - HealthChecks-UI__HealthChecks__4__Uri=http://mobileshoppingagg/hc
  298. - HealthChecks-UI__HealthChecks__5__Name=Mobile Shopping API GW HTTP Check
  299. - HealthChecks-UI__HealthChecks__5__Uri=http://mobileshoppingapigw/hc
  300. - HealthChecks-UI__HealthChecks__6__Name=Mobile Marketing API GW HTTP Check
  301. - HealthChecks-UI__HealthChecks__6__Uri=http://mobilemarketingapigw/hc
  302. - HealthChecks-UI__HealthChecks__7__Name=Web Shopping API GW HTTP Check
  303. - HealthChecks-UI__HealthChecks__7__Uri=http://webshoppingapigw/hc
  304. - HealthChecks-UI__HealthChecks__8__Name=Web Marketing API GW HTTP Check
  305. - HealthChecks-UI__HealthChecks__8__Uri=http://webmarketingapigw/hc
  306. - HealthChecks-UI__HealthChecks__9__Name=Ordering HTTP Check
  307. - HealthChecks-UI__HealthChecks__9__Uri=http://ordering.api/hc
  308. - HealthChecks-UI__HealthChecks__10__Name=Ordering HTTP Background Check
  309. - HealthChecks-UI__HealthChecks__10__Uri=http://ordering.backgroundtasks/hc
  310. - HealthChecks-UI__HealthChecks__11__Name=Basket HTTP Check
  311. - HealthChecks-UI__HealthChecks__11__Uri=http://basket.api/hc
  312. - HealthChecks-UI__HealthChecks__12__Name=Catalog HTTP Check
  313. - HealthChecks-UI__HealthChecks__12__Uri=http://catalog.api/hc
  314. - HealthChecks-UI__HealthChecks__13__Name=Identity HTTP Check
  315. - HealthChecks-UI__HealthChecks__13__Uri=http://identity.api/hc
  316. - HealthChecks-UI__HealthChecks__14__Name=Marketing HTTP Check
  317. - HealthChecks-UI__HealthChecks__14__Uri=http://marketing.api/hc
  318. - HealthChecks-UI__HealthChecks__15__Name=Locations HTTP Check
  319. - HealthChecks-UI__HealthChecks__15__Uri=http://locations.api/hc
  320. - HealthChecks-UI__HealthChecks__16__Name=Payments HTTP Check
  321. - HealthChecks-UI__HealthChecks__16__Uri=http://payment.api/hc
  322. - HealthChecks-UI__HealthChecks__17__Name=Ordering SignalRHub HTTP Check
  323. - HealthChecks-UI__HealthChecks__17__Uri=http://ordering.signalrhub/hc
  324. - OrderingBackgroundTasksUrl=http://ordering.backgroundtasks/hc
  325. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  326. - OrchestratorType=${ORCHESTRATOR_TYPE}
  327. ports:
  328. - "5107:80"
  329. webspa:
  330. environment:
  331. - ASPNETCORE_ENVIRONMENT=Development
  332. - ASPNETCORE_URLS=http://0.0.0.0:80
  333. - 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.
  334. - PurchaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  335. - MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5203
  336. - PurchaseUrlHC=http://webshoppingapigw/hc
  337. - MarketingUrlHC=http://webmarketingapigw/hc
  338. - IdentityUrlHC=http://identity.api/hc
  339. - UseCustomizationData=True
  340. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  341. - OrchestratorType=${ORCHESTRATOR_TYPE}
  342. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  343. ports:
  344. - "5104:80"
  345. webmvc:
  346. environment:
  347. - ASPNETCORE_ENVIRONMENT=Development
  348. - ASPNETCORE_URLS=http://0.0.0.0:80
  349. - PurchaseUrl=http://webshoppingapigw
  350. - 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.
  351. - MarketingUrl=http://webmarketingapigw
  352. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  353. - IdentityUrlHC=http://identity.api/hc
  354. - PurchaseUrlHC=http://webshoppingapigw/hc
  355. - MarketingUrlHC=http://webmarketingapigw/hc
  356. - UseCustomizationData=True
  357. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  358. - OrchestratorType=${ORCHESTRATOR_TYPE}
  359. - UseLoadTest=${USE_LOADTEST:-False}
  360. ports:
  361. - "5100:80"