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.

428 lines
18 KiB

6 years ago
5 years ago
5 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
6 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. - "5580:5001"
  67. catalog.api:
  68. environment:
  69. - ASPNETCORE_ENVIRONMENT=Development
  70. - ConnectionString=${ESHOP_AZURE_CATALOG_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word}
  71. - 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.
  72. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  73. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  74. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  75. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_CATALOG_NAME}
  76. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_CATALOG_KEY}
  77. - UseCustomizationData=True
  78. - AzureServiceBusEnabled=False
  79. - AzureStorageEnabled=False
  80. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  81. - OrchestratorType=${ORCHESTRATOR_TYPE}
  82. - GRPC_PORT=81
  83. - PORT=80
  84. ports:
  85. - "5101:80"
  86. - "9101:81"
  87. ordering.api:
  88. environment:
  89. - ASPNETCORE_ENVIRONMENT=Development
  90. - ASPNETCORE_URLS=http://0.0.0.0:80
  91. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  92. - identityUrl=http://identity.api
  93. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  94. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  95. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  96. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  97. - UseCustomizationData=True
  98. - AzureServiceBusEnabled=False
  99. - CheckUpdateTime=30000
  100. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  101. - OrchestratorType=${ORCHESTRATOR_TYPE}
  102. - UseLoadTest=${USE_LOADTEST:-False}
  103. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  104. - Serilog__MinimumLevel__Override__Ordering.API=Verbose
  105. ports:
  106. - "5102:80"
  107. - "5581:5001"
  108. ordering.backgroundtasks:
  109. environment:
  110. - ASPNETCORE_ENVIRONMENT=Development
  111. - ASPNETCORE_URLS=http://0.0.0.0:80
  112. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  113. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  114. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  115. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  116. - UseCustomizationData=True
  117. - AzureServiceBusEnabled=False
  118. - CheckUpdateTime=30000
  119. - GracePeriodTime=1
  120. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  121. - OrchestratorType=${ORCHESTRATOR_TYPE}
  122. - UseLoadTest=${USE_LOADTEST:-False}
  123. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  124. ports:
  125. - "5111:80"
  126. marketing.api:
  127. environment:
  128. - ASPNETCORE_ENVIRONMENT=Development
  129. - ASPNETCORE_URLS=http://0.0.0.0:80
  130. - ConnectionString=${ESHOP_AZURE_MARKETING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id=sa;Password=Pass@word}
  131. - MongoConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  132. - MongoDatabase=MarketingDb
  133. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  134. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  135. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  136. - identityUrl=http://identity.api
  137. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  138. - CampaignDetailFunctionUri=${ESHOP_AZUREFUNC_CAMPAIGN_DETAILS_URI}
  139. - PicBaseUrl=${ESHOP_AZURE_STORAGE_MARKETING_URL:-http://localhost:5110/api/v1/campaigns/[0]/pic/}
  140. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_MARKETING_NAME}
  141. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_MARKETING_KEY}
  142. - AzureServiceBusEnabled=False
  143. - AzureStorageEnabled=False
  144. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  145. - OrchestratorType=${ORCHESTRATOR_TYPE}
  146. - UseLoadTest=${USE_LOADTEST:-False}
  147. ports:
  148. - "5110:80"
  149. payment.api:
  150. environment:
  151. - ASPNETCORE_ENVIRONMENT=Development
  152. - ASPNETCORE_URLS=http://0.0.0.0:80
  153. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  154. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  155. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  156. - AzureServiceBusEnabled=False
  157. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  158. - OrchestratorType=${ORCHESTRATOR_TYPE}
  159. - Serilog__MinimumLevel__Override__Payment.API.IntegrationEvents.EventHandling=Verbose
  160. - Serilog__MinimumLevel__Override__Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ=Verbose
  161. ports:
  162. - "5108:80"
  163. locations.api:
  164. environment:
  165. - ASPNETCORE_ENVIRONMENT=Development
  166. - ASPNETCORE_URLS=http://0.0.0.0:80
  167. - ConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  168. - Database=LocationsDb
  169. - identityUrl=http://identity.api
  170. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  171. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  172. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  173. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  174. - AzureServiceBusEnabled=False
  175. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  176. - OrchestratorType=${ORCHESTRATOR_TYPE}
  177. - UseLoadTest=${USE_LOADTEST:-False}
  178. ports:
  179. - "5109:80"
  180. webhooks.api:
  181. environment:
  182. - ASPNETCORE_ENVIRONMENT=Development
  183. - ASPNETCORE_URLS=http://0.0.0.0:80
  184. - ConnectionString=${ESHOP_AZURE_WEBHOOKS_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.WebhooksDb;User Id=sa;Password=Pass@word}
  185. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  186. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  187. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  188. - IdentityUrl=http://identity.api
  189. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  190. ports:
  191. - "5113:80"
  192. mobileshoppingapigw:
  193. environment:
  194. - ASPNETCORE_ENVIRONMENT=Development
  195. - IdentityUrl=http://identity.api
  196. - urls__basket=http://basket.api
  197. - urls__catalog=http://catalog.api
  198. - urls__orders=http://ordering.api
  199. - urls__identity=http://identity.api
  200. - CatalogUrlHC=http://catalog.api/hc
  201. - OrderingUrlHC=http://ordering.api/hc
  202. - IdentityUrlHC=http://identity.api/hc
  203. - BasketUrlHC=http://basket.api/hc
  204. - MarketingUrlHC=http://marketing.api/hc
  205. - PaymentUrlHC=http://payment.api/hc
  206. - LocationUrlHC=http://locations.api/hc
  207. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  208. ports:
  209. - "5200:80"
  210. volumes:
  211. - ./src/ApiGateways/Mobile.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  212. mobilemarketingapigw:
  213. environment:
  214. - ASPNETCORE_ENVIRONMENT=Development
  215. - IdentityUrl=http://identity.api
  216. - CatalogUrlHC=http://catalog.api/hc
  217. - OrderingUrlHC=http://ordering.api/hc
  218. - IdentityUrlHC=http://identity.api/hc
  219. - BasketUrlHC=http://basket.api/hc
  220. - MarketingUrlHC=http://marketing.api/hc
  221. - PaymentUrlHC=http://payment.api/hc
  222. - LocationUrlHC=http://locations.api/hc
  223. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  224. ports:
  225. - "5201:80"
  226. volumes:
  227. - ./src/ApiGateways/Mobile.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  228. webshoppingapigw:
  229. environment:
  230. - ASPNETCORE_ENVIRONMENT=Development
  231. - IdentityUrl=http://identity.api
  232. - CatalogUrlHC=http://catalog.api/hc
  233. - OrderingUrlHC=http://ordering.api/hc
  234. - IdentityUrlHC=http://identity.api/hc
  235. - BasketUrlHC=http://basket.api/hc
  236. - MarketingUrlHC=http://marketing.api/hc
  237. - PaymentUrlHC=http://payment.api/hc
  238. - LocationUrlHC=http://locations.api/hc
  239. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  240. ports:
  241. - "5202:80"
  242. volumes:
  243. - ./src/ApiGateways/Web.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  244. webmarketingapigw:
  245. environment:
  246. - ASPNETCORE_ENVIRONMENT=Development
  247. - IdentityUrl=http://identity.api
  248. - CatalogUrlHC=http://catalog.api/hc
  249. - OrderingUrlHC=http://ordering.api/hc
  250. - IdentityUrlHC=http://identity.api/hc
  251. - BasketUrlHC=http://basket.api/hc
  252. - MarketingUrlHC=http://marketing.api/hc
  253. - PaymentUrlHC=http://payment.api/hc
  254. - LocationUrlHC=http://locations.api/hc
  255. - IdentityUrlExternal=http://10.0.75.1:5105
  256. ports:
  257. - "5203:80"
  258. volumes:
  259. - ./src/ApiGateways/Web.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  260. mobileshoppingagg:
  261. environment:
  262. - ASPNETCORE_ENVIRONMENT=Development
  263. - urls__basket=http://basket.api
  264. - urls__catalog=http://catalog.api
  265. - urls__orders=http://ordering.api
  266. - urls__identity=http://identity.api
  267. - urls__grpcBasket=http://10.0.75.1:5580
  268. - urls__grpcOrdering=http://10.0.75.1:5581
  269. - CatalogUrlHC=http://catalog.api/hc
  270. - OrderingUrlHC=http://ordering.api/hc
  271. - IdentityUrlHC=http://identity.api/hc
  272. - BasketUrlHC=http://basket.api/hc
  273. - MarketingUrlHC=http://marketing.api/hc
  274. - PaymentUrlHC=http://payment.api/hc
  275. - LocationUrlHC=http://locations.api/hc
  276. - IdentityUrlExternal=http://10.0.75.1:5105
  277. ports:
  278. - "5120:80"
  279. webshoppingagg:
  280. environment:
  281. - ASPNETCORE_ENVIRONMENT=Development
  282. - urls__basket=http://basket.api
  283. - urls__catalog=http://catalog.api
  284. - urls__orders=http://ordering.api
  285. - urls__identity=http://identity.api
  286. - urls__grpcBasket=http://10.0.75.1:5580
  287. - urls__grpcCatalog=http://10.0.75.1:9101
  288. - urls__grpcOrdering=http://10.0.75.1:5581
  289. - CatalogUrlHC=http://catalog.api/hc
  290. - OrderingUrlHC=http://ordering.api/hc
  291. - IdentityUrlHC=http://identity.api/hc
  292. - BasketUrlHC=http://basket.api/hc
  293. - MarketingUrlHC=http://marketing.api/hc
  294. - PaymentUrlHC=http://payment.api/hc
  295. - LocationUrlHC=http://locations.api/hc
  296. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  297. ports:
  298. - "5121:80"
  299. ordering.signalrhub:
  300. environment:
  301. - ASPNETCORE_ENVIRONMENT=Development
  302. - ASPNETCORE_URLS=http://0.0.0.0:80
  303. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  304. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  305. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  306. - AzureServiceBusEnabled=False
  307. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  308. - OrchestratorType=${ORCHESTRATOR_TYPE}
  309. - identityUrl=http://identity.api
  310. ports:
  311. - "5112:80"
  312. webstatus:
  313. environment:
  314. - ASPNETCORE_ENVIRONMENT=Production
  315. - ASPNETCORE_URLS=http://0.0.0.0:80
  316. - HealthChecks-UI__HealthChecks__0__Name=WebMVC HTTP Check
  317. - HealthChecks-UI__HealthChecks__0__Uri=http://webmvc/hc
  318. - HealthChecks-UI__HealthChecks__1__Name=WebSPA HTTP Check
  319. - HealthChecks-UI__HealthChecks__1__Uri=http://webspa/hc
  320. - HealthChecks-UI__HealthChecks__2__Name=Web Shopping Aggregator GW HTTP Check
  321. - HealthChecks-UI__HealthChecks__2__Uri=http://webshoppingagg/hc
  322. - HealthChecks-UI__HealthChecks__3__Name=Mobile Shopping Aggregator HTTP Check
  323. - HealthChecks-UI__HealthChecks__3__Uri=http://mobileshoppingagg/hc
  324. - HealthChecks-UI__HealthChecks__4__Name=Mobile Shopping API GW HTTP Check
  325. - HealthChecks-UI__HealthChecks__4__Uri=http://mobileshoppingapigw/hc
  326. - HealthChecks-UI__HealthChecks__5__Name=Mobile Marketing API GW HTTP Check
  327. - HealthChecks-UI__HealthChecks__5__Uri=http://mobilemarketingapigw/hc
  328. - HealthChecks-UI__HealthChecks__6__Name=Web Shopping API GW HTTP Check
  329. - HealthChecks-UI__HealthChecks__6__Uri=http://webshoppingapigw/hc
  330. - HealthChecks-UI__HealthChecks__7__Name=Web Marketing API GW HTTP Check
  331. - HealthChecks-UI__HealthChecks__7__Uri=http://webmarketingapigw/hc
  332. - HealthChecks-UI__HealthChecks__8__Name=Ordering HTTP Check
  333. - HealthChecks-UI__HealthChecks__8__Uri=http://ordering.api/hc
  334. - HealthChecks-UI__HealthChecks__9__Name=Basket HTTP Check
  335. - HealthChecks-UI__HealthChecks__9__Uri=http://basket.api/hc
  336. - HealthChecks-UI__HealthChecks__10__Name=Catalog HTTP Check
  337. - HealthChecks-UI__HealthChecks__10__Uri=http://catalog.api/hc
  338. - HealthChecks-UI__HealthChecks__11__Name=Identity HTTP Check
  339. - HealthChecks-UI__HealthChecks__11__Uri=http://identity.api/hc
  340. - HealthChecks-UI__HealthChecks__12__Name=Marketing HTTP Check
  341. - HealthChecks-UI__HealthChecks__12__Uri=http://marketing.api/hc
  342. - HealthChecks-UI__HealthChecks__13__Name=Locations HTTP Check
  343. - HealthChecks-UI__HealthChecks__13__Uri=http://locations.api/hc
  344. - HealthChecks-UI__HealthChecks__14__Name=Payments HTTP Check
  345. - HealthChecks-UI__HealthChecks__14__Uri=http://payment.api/hc
  346. - HealthChecks-UI__HealthChecks__15__Name=Ordering SignalRHub HTTP Check
  347. - HealthChecks-UI__HealthChecks__15__Uri=http://ordering.signalrhub/hc
  348. - HealthChecks-UI__HealthChecks__16__Name=Ordering HTTP Background Check
  349. - HealthChecks-UI__HealthChecks__16__Uri=http://ordering.backgroundtasks/hc
  350. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  351. - OrchestratorType=${ORCHESTRATOR_TYPE}
  352. ports:
  353. - "5107:80"
  354. webspa:
  355. environment:
  356. - ASPNETCORE_ENVIRONMENT=Development
  357. - ASPNETCORE_URLS=http://0.0.0.0:80
  358. - IdentityUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  359. - PurchaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  360. - MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5203
  361. - PurchaseUrlHC=http://webshoppingapigw/hc
  362. - MarketingUrlHC=http://webmarketingapigw/hc
  363. - IdentityUrlHC=http://identity.api/hc
  364. - UseCustomizationData=True
  365. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  366. - OrchestratorType=${ORCHESTRATOR_TYPE}
  367. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  368. ports:
  369. - "5104:80"
  370. webmvc:
  371. environment:
  372. - ASPNETCORE_ENVIRONMENT=Development
  373. - ASPNETCORE_URLS=http://0.0.0.0:80
  374. - PurchaseUrl=http://webshoppingapigw
  375. - IdentityUrl=http://10.0.75.1:5105
  376. - MarketingUrl=http://webmarketingapigw
  377. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  378. - IdentityUrlHC=http://identity.api/hc
  379. - PurchaseUrlHC=http://webshoppingapigw/hc
  380. - MarketingUrlHC=http://webmarketingapigw/hc
  381. - UseCustomizationData=True
  382. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  383. - OrchestratorType=${ORCHESTRATOR_TYPE}
  384. - UseLoadTest=${USE_LOADTEST:-False}
  385. ports:
  386. - "5100:80"
  387. webhooks.client:
  388. environment:
  389. - ASPNETCORE_URLS=http://0.0.0.0:80
  390. - Token=6168DB8D-DC58-4094-AF24-483278923590 # Webhooks are registered with this token (any value is valid) but the client won't check it
  391. - IdentityUrl=http://10.0.75.1:5105
  392. - CallBackUrl=http://localhost:5114
  393. - WebhooksUrl=http://webhooks.api
  394. - SelfUrl=http://webhooks.client/
  395. ports:
  396. - "5114:80"
  397. envoy:
  398. volumes:
  399. - ./src/ApiGateways/Envoy/config:/etc/envoy
  400. ports:
  401. - "51051:51051"