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.

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