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.

421 lines
18 KiB

6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
5 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"
  19. nosql.data:
  20. ports:
  21. - "27017:27017"
  22. basket.data:
  23. ports:
  24. - "6379:6379"
  25. rabbitmq:
  26. ports:
  27. - "15672:15672"
  28. - "5672:5672"
  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
  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
  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
  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"
  66. catalog.api:
  67. environment:
  68. - ASPNETCORE_ENVIRONMENT=Development
  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. - GRPC_PORT=81
  82. - PORT=80
  83. ports:
  84. - "5101:80"
  85. - "9101:81"
  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
  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. - Serilog__MinimumLevel__Override__Ordering.API=Verbose
  104. ports:
  105. - "5102: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
  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"
  147. payment.api:
  148. environment:
  149. - ASPNETCORE_ENVIRONMENT=Development
  150. - ASPNETCORE_URLS=http://0.0.0.0:80
  151. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  152. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  153. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  154. - AzureServiceBusEnabled=False
  155. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  156. - OrchestratorType=${ORCHESTRATOR_TYPE}
  157. - Serilog__MinimumLevel__Override__Payment.API.IntegrationEvents.EventHandling=Verbose
  158. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  159. ports:
  160. - "5108:80"
  161. locations.api:
  162. environment:
  163. - ASPNETCORE_ENVIRONMENT=Development
  164. - ASPNETCORE_URLS=http://0.0.0.0:80
  165. - ConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  166. - Database=LocationsDb
  167. - identityUrl=http://identity.api
  168. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  169. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  170. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  171. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  172. - AzureServiceBusEnabled=False
  173. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  174. - OrchestratorType=${ORCHESTRATOR_TYPE}
  175. - UseLoadTest=${USE_LOADTEST:-False}
  176. ports:
  177. - "5109:80"
  178. webhooks.api:
  179. environment:
  180. - ASPNETCORE_ENVIRONMENT=Development
  181. - ASPNETCORE_URLS=http://0.0.0.0:80
  182. - ConnectionString=${ESHOP_AZURE_WEBHOOKS_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.WebhooksDb;User Id=sa;Password=Pass@word}
  183. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  184. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  185. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  186. - IdentityUrl=http://identity.api
  187. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  188. ports:
  189. - "5113:80"
  190. mobileshoppingapigw:
  191. environment:
  192. - ASPNETCORE_ENVIRONMENT=Development
  193. - IdentityUrl=http://identity.api
  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. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  206. ports:
  207. - "5200:80"
  208. volumes:
  209. - ./src/ApiGateways/Mobile.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  210. mobilemarketingapigw:
  211. environment:
  212. - ASPNETCORE_ENVIRONMENT=Development
  213. - IdentityUrl=http://identity.api
  214. - CatalogUrlHC=http://catalog.api/hc
  215. - OrderingUrlHC=http://ordering.api/hc
  216. - IdentityUrlHC=http://identity.api/hc
  217. - BasketUrlHC=http://basket.api/hc
  218. - MarketingUrlHC=http://marketing.api/hc
  219. - PaymentUrlHC=http://payment.api/hc
  220. - LocationUrlHC=http://locations.api/hc
  221. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  222. ports:
  223. - "5201:80"
  224. volumes:
  225. - ./src/ApiGateways/Mobile.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  226. webshoppingapigw:
  227. environment:
  228. - ASPNETCORE_ENVIRONMENT=Development
  229. - IdentityUrl=http://identity.api
  230. - CatalogUrlHC=http://catalog.api/hc
  231. - OrderingUrlHC=http://ordering.api/hc
  232. - IdentityUrlHC=http://identity.api/hc
  233. - BasketUrlHC=http://basket.api/hc
  234. - MarketingUrlHC=http://marketing.api/hc
  235. - PaymentUrlHC=http://payment.api/hc
  236. - LocationUrlHC=http://locations.api/hc
  237. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  238. ports:
  239. - "5202:80"
  240. volumes:
  241. - ./src/ApiGateways/Web.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  242. webmarketingapigw:
  243. environment:
  244. - ASPNETCORE_ENVIRONMENT=Development
  245. - IdentityUrl=http://identity.api
  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. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  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
  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. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  273. ports:
  274. - "5120: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
  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. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  290. ports:
  291. - "5121: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
  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=Basket HTTP Check
  328. - HealthChecks-UI__HealthChecks__9__Uri=http://basket.api/hc
  329. - HealthChecks-UI__HealthChecks__10__Name=Catalog HTTP Check
  330. - HealthChecks-UI__HealthChecks__10__Uri=http://catalog.api/hc
  331. - HealthChecks-UI__HealthChecks__11__Name=Identity HTTP Check
  332. - HealthChecks-UI__HealthChecks__11__Uri=http://identity.api/hc
  333. - HealthChecks-UI__HealthChecks__12__Name=Marketing HTTP Check
  334. - HealthChecks-UI__HealthChecks__12__Uri=http://marketing.api/hc
  335. - HealthChecks-UI__HealthChecks__13__Name=Locations HTTP Check
  336. - HealthChecks-UI__HealthChecks__13__Uri=http://locations.api/hc
  337. - HealthChecks-UI__HealthChecks__14__Name=Payments HTTP Check
  338. - HealthChecks-UI__HealthChecks__14__Uri=http://payment.api/hc
  339. - HealthChecks-UI__HealthChecks__15__Name=Ordering SignalRHub HTTP Check
  340. - HealthChecks-UI__HealthChecks__15__Uri=http://ordering.signalrhub/hc
  341. - HealthChecks-UI__HealthChecks__16__Name=Ordering HTTP Background Check
  342. - HealthChecks-UI__HealthChecks__16__Uri=http://ordering.backgroundtasks/hc
  343. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  344. - OrchestratorType=${ORCHESTRATOR_TYPE}
  345. ports:
  346. - "5107:80"
  347. webspa:
  348. environment:
  349. - ASPNETCORE_ENVIRONMENT=Development
  350. - ASPNETCORE_URLS=http://0.0.0.0:80
  351. - IdentityUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  352. - PurchaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  353. - MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5203
  354. - PurchaseUrlHC=http://webshoppingapigw/hc
  355. - MarketingUrlHC=http://webmarketingapigw/hc
  356. - IdentityUrlHC=http://identity.api/hc
  357. - UseCustomizationData=True
  358. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  359. - OrchestratorType=${ORCHESTRATOR_TYPE}
  360. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  361. ports:
  362. - "5104:80"
  363. webmvc:
  364. environment:
  365. - ASPNETCORE_ENVIRONMENT=Development
  366. - ASPNETCORE_URLS=http://0.0.0.0:80
  367. - PurchaseUrl=http://webshoppingapigw
  368. - IdentityUrl=http://10.0.75.1:5105
  369. - MarketingUrl=http://webmarketingapigw
  370. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  371. - IdentityUrlHC=http://identity.api/hc
  372. - PurchaseUrlHC=http://webshoppingapigw/hc
  373. - MarketingUrlHC=http://webmarketingapigw/hc
  374. - UseCustomizationData=True
  375. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  376. - OrchestratorType=${ORCHESTRATOR_TYPE}
  377. - UseLoadTest=${USE_LOADTEST:-False}
  378. ports:
  379. - "5100:80"
  380. webhooks.client:
  381. environment:
  382. - ASPNETCORE_URLS=http://0.0.0.0:80
  383. - Token=6168DB8D-DC58-4094-AF24-483278923590 # Webhooks are registered with this token (any value is valid) but the client won't check it
  384. - IdentityUrl=http://10.0.75.1:5105
  385. - CallBackUrl=http://localhost:5114
  386. - WebhooksUrl=http://webhooks.api
  387. - SelfUrl=http://webhooks.client/
  388. ports:
  389. - "5114:80"
  390. envoy:
  391. volumes:
  392. - ./src/ApiGateways/Envoy/config:/etc/envoy
  393. ports:
  394. - "51051:51051"