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.

378 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. - CatalogUrlHC=http://catalog.api/hc
  175. - OrderingUrlHC=http://ordering.api/hc
  176. - IdentityUrlHC=http://identity.api/hc
  177. - BasketUrlHC=http://basket.api/hc
  178. - MarketingUrlHC=http://marketing.api/hc
  179. - PaymentUrlHC=http://payment.api/hc
  180. - LocationUrlHC=http://locations.api/hc
  181. ports:
  182. - "5200:80"
  183. volumes:
  184. - ./src/ApiGateways/Mobile.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  185. mobilemarketingapigw:
  186. environment:
  187. - ASPNETCORE_ENVIRONMENT=Development
  188. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  189. - CatalogUrlHC=http://catalog.api/hc
  190. - OrderingUrlHC=http://ordering.api/hc
  191. - IdentityUrlHC=http://identity.api/hc
  192. - BasketUrlHC=http://basket.api/hc
  193. - MarketingUrlHC=http://marketing.api/hc
  194. - PaymentUrlHC=http://payment.api/hc
  195. - LocationUrlHC=http://locations.api/hc
  196. ports:
  197. - "5201:80"
  198. volumes:
  199. - ./src/ApiGateways/Mobile.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  200. webshoppingapigw:
  201. environment:
  202. - ASPNETCORE_ENVIRONMENT=Development
  203. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  204. - CatalogUrlHC=http://catalog.api/hc
  205. - OrderingUrlHC=http://ordering.api/hc
  206. - IdentityUrlHC=http://identity.api/hc
  207. - BasketUrlHC=http://basket.api/hc
  208. - MarketingUrlHC=http://marketing.api/hc
  209. - PaymentUrlHC=http://payment.api/hc
  210. - LocationUrlHC=http://locations.api/hc
  211. ports:
  212. - "5202:80"
  213. volumes:
  214. - ./src/ApiGateways/Web.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  215. webmarketingapigw:
  216. environment:
  217. - ASPNETCORE_ENVIRONMENT=Development
  218. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  219. - CatalogUrlHC=http://catalog.api/hc
  220. - OrderingUrlHC=http://ordering.api/hc
  221. - IdentityUrlHC=http://identity.api/hc
  222. - BasketUrlHC=http://basket.api/hc
  223. - MarketingUrlHC=http://marketing.api/hc
  224. - PaymentUrlHC=http://payment.api/hc
  225. - LocationUrlHC=http://locations.api/hc
  226. ports:
  227. - "5203:80"
  228. volumes:
  229. - ./src/ApiGateways/Web.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  230. mobileshoppingagg:
  231. environment:
  232. - ASPNETCORE_ENVIRONMENT=Development
  233. - urls__basket=http://basket.api
  234. - urls__catalog=http://catalog.api
  235. - urls__orders=http://ordering.api
  236. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  237. - CatalogUrlHC=http://catalog.api/hc
  238. - OrderingUrlHC=http://ordering.api/hc
  239. - IdentityUrlHC=http://identity.api/hc
  240. - BasketUrlHC=http://basket.api/hc
  241. - MarketingUrlHC=http://marketing.api/hc
  242. - PaymentUrlHC=http://payment.api/hc
  243. - LocationUrlHC=http://locations.api/hc
  244. ports:
  245. - "5120:80" # Important: In a production environment your should remove the external port (5120) kept here for microservice debugging purposes.
  246. # The API Gateway redirects and access through the internal port (80).
  247. webshoppingagg:
  248. environment:
  249. - ASPNETCORE_ENVIRONMENT=Development
  250. - urls__basket=http://basket.api
  251. - urls__catalog=http://catalog.api
  252. - urls__orders=http://ordering.api
  253. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  254. - CatalogUrlHC=http://catalog.api/hc
  255. - OrderingUrlHC=http://ordering.api/hc
  256. - IdentityUrlHC=http://identity.api/hc
  257. - BasketUrlHC=http://basket.api/hc
  258. - MarketingUrlHC=http://marketing.api/hc
  259. - PaymentUrlHC=http://payment.api/hc
  260. - LocationUrlHC=http://locations.api/hc
  261. ports:
  262. - "5121:80" # Important: In a production environment your should remove the external port (5121) kept here for microservice debugging purposes.
  263. # The API Gateway redirects and access through the internal port (80).
  264. ordering.signalrhub:
  265. environment:
  266. - ASPNETCORE_ENVIRONMENT=Development
  267. - ASPNETCORE_URLS=http://0.0.0.0:80
  268. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  269. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  270. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  271. - AzureServiceBusEnabled=False
  272. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  273. - OrchestratorType=${ORCHESTRATOR_TYPE}
  274. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  275. ports:
  276. - "5112:80"
  277. webstatus:
  278. environment:
  279. - ASPNETCORE_ENVIRONMENT=Development
  280. - ASPNETCORE_URLS=http://0.0.0.0:80
  281. - HealthChecks-UI__HealthChecks__1__Name=WebMVC HTTP Check
  282. - HealthChecks-UI__HealthChecks__1__Uri=http://webmvc/hc
  283. - HealthChecks-UI__HealthChecks__2__Name=WebSPA HTTP Check
  284. - HealthChecks-UI__HealthChecks__2__Uri=http://webspa/hc
  285. - HealthChecks-UI__HealthChecks__3__Name=Web Shopping Aggregator GW HTTP Check
  286. - HealthChecks-UI__HealthChecks__3__Uri=http://webshoppingagg/hc
  287. - HealthChecks-UI__HealthChecks__4__Name=Mobile Shopping Aggregator HTTP Check
  288. - HealthChecks-UI__HealthChecks__4__Uri=http://mobileshoppingagg/hc
  289. - HealthChecks-UI__HealthChecks__5__Name=Mobile Shopping API GW HTTP Check
  290. - HealthChecks-UI__HealthChecks__5__Uri=http://mobileshoppingapigw/hc
  291. - HealthChecks-UI__HealthChecks__6__Name=Mobile Marketing API GW HTTP Check
  292. - HealthChecks-UI__HealthChecks__6__Uri=http://mobilemarketingapigw/hc
  293. - HealthChecks-UI__HealthChecks__7__Name=Web Shopping API GW HTTP Check
  294. - HealthChecks-UI__HealthChecks__7__Uri=http://webshoppingapigw/hc
  295. - HealthChecks-UI__HealthChecks__8__Name=Web Marketing API GW HTTP Check
  296. - HealthChecks-UI__HealthChecks__8__Uri=http://webmarketingapigw/hc
  297. - HealthChecks-UI__HealthChecks__9__Name=Ordering HTTP Check
  298. - HealthChecks-UI__HealthChecks__9__Uri=http://ordering.api/hc
  299. - HealthChecks-UI__HealthChecks__10__Name=Ordering HTTP Background Check
  300. - HealthChecks-UI__HealthChecks__10__Uri=http://ordering.backgroundtasks/hc
  301. - HealthChecks-UI__HealthChecks__11__Name=Basket HTTP Check
  302. - HealthChecks-UI__HealthChecks__11__Uri=http://basket.api/hc
  303. - HealthChecks-UI__HealthChecks__12__Name=Catalog HTTP Check
  304. - HealthChecks-UI__HealthChecks__12__Uri=http://catalog.api/hc
  305. - HealthChecks-UI__HealthChecks__13__Name=Identity HTTP Check
  306. - HealthChecks-UI__HealthChecks__13__Uri=http://identity.api/hc
  307. - HealthChecks-UI__HealthChecks__14__Name=Marketing HTTP Check
  308. - HealthChecks-UI__HealthChecks__14__Uri=http://marketing.api/hc
  309. - HealthChecks-UI__HealthChecks__15__Name=Locations HTTP Check
  310. - HealthChecks-UI__HealthChecks__15__Uri=http://locations.api/hc
  311. - HealthChecks-UI__HealthChecks__16__Name=Payments HTTP Check
  312. - HealthChecks-UI__HealthChecks__16__Uri=http://payment.api/hc
  313. - HealthChecks-UI__HealthChecks__17__Name=Ordering SignalRHub HTTP Check
  314. - HealthChecks-UI__HealthChecks__17__Uri=http://ordering.signalrhub/hc
  315. - OrderingBackgroundTasksUrl=http://ordering.backgroundtasks/hc
  316. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  317. - OrchestratorType=${ORCHESTRATOR_TYPE}
  318. ports:
  319. - "5107:80"
  320. webspa:
  321. environment:
  322. - ASPNETCORE_ENVIRONMENT=Development
  323. - ASPNETCORE_URLS=http://0.0.0.0:80
  324. - 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.
  325. - PurchaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  326. - MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5203
  327. - PurchaseUrlHC=http://webshoppingapigw/hc
  328. - MarketingUrlHC=http://webmarketingapigw/hc
  329. - IdentityUrlHC=http://identity.api/hc
  330. - UseCustomizationData=True
  331. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  332. - OrchestratorType=${ORCHESTRATOR_TYPE}
  333. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  334. ports:
  335. - "5104:80"
  336. webmvc:
  337. environment:
  338. - ASPNETCORE_ENVIRONMENT=Development
  339. - ASPNETCORE_URLS=http://0.0.0.0:80
  340. - PurchaseUrl=http://webshoppingapigw
  341. - 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.
  342. - MarketingUrl=http://webmarketingapigw
  343. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  344. - IdentityUrlHC=http://identity.api/hc
  345. - PurchaseUrlHC=http://webshoppingapigw/hc
  346. - MarketingUrlHC=http://webmarketingapigw/hc
  347. - UseCustomizationData=True
  348. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  349. - OrchestratorType=${ORCHESTRATOR_TYPE}
  350. - UseLoadTest=${USE_LOADTEST:-False}
  351. ports:
  352. - "5100:80"