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.

417 lines
18 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 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. ports:
  206. - "5200:80"
  207. volumes:
  208. - ./src/ApiGateways/Mobile.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  209. mobilemarketingapigw:
  210. environment:
  211. - ASPNETCORE_ENVIRONMENT=Development
  212. - IdentityUrl=http://identity.api
  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. - "5201:80"
  222. volumes:
  223. - ./src/ApiGateways/Mobile.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  224. webshoppingapigw:
  225. environment:
  226. - ASPNETCORE_ENVIRONMENT=Development
  227. - IdentityUrl=http://identity.api
  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. - "5202:80"
  237. volumes:
  238. - ./src/ApiGateways/Web.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  239. webmarketingapigw:
  240. environment:
  241. - ASPNETCORE_ENVIRONMENT=Development
  242. - IdentityUrl=http://identity.api
  243. - CatalogUrlHC=http://catalog.api/hc
  244. - OrderingUrlHC=http://ordering.api/hc
  245. - IdentityUrlHC=http://identity.api/hc
  246. - BasketUrlHC=http://basket.api/hc
  247. - MarketingUrlHC=http://marketing.api/hc
  248. - PaymentUrlHC=http://payment.api/hc
  249. - LocationUrlHC=http://locations.api/hc
  250. ports:
  251. - "5203:80"
  252. volumes:
  253. - ./src/ApiGateways/Web.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  254. mobileshoppingagg:
  255. environment:
  256. - ASPNETCORE_ENVIRONMENT=Development
  257. - urls__basket=http://basket.api
  258. - urls__catalog=http://catalog.api
  259. - urls__orders=http://ordering.api
  260. - urls__identity=http://identity.api
  261. - CatalogUrlHC=http://catalog.api/hc
  262. - OrderingUrlHC=http://ordering.api/hc
  263. - IdentityUrlHC=http://identity.api/hc
  264. - BasketUrlHC=http://basket.api/hc
  265. - MarketingUrlHC=http://marketing.api/hc
  266. - PaymentUrlHC=http://payment.api/hc
  267. - LocationUrlHC=http://locations.api/hc
  268. ports:
  269. - "5120:80"
  270. webshoppingagg:
  271. environment:
  272. - ASPNETCORE_ENVIRONMENT=Development
  273. - urls__basket=http://basket.api
  274. - urls__catalog=http://catalog.api
  275. - urls__orders=http://ordering.api
  276. - urls__identity=http://identity.api
  277. - CatalogUrlHC=http://catalog.api/hc
  278. - OrderingUrlHC=http://ordering.api/hc
  279. - IdentityUrlHC=http://identity.api/hc
  280. - BasketUrlHC=http://basket.api/hc
  281. - MarketingUrlHC=http://marketing.api/hc
  282. - PaymentUrlHC=http://payment.api/hc
  283. - LocationUrlHC=http://locations.api/hc
  284. ports:
  285. - "5121:80"
  286. ordering.signalrhub:
  287. environment:
  288. - ASPNETCORE_ENVIRONMENT=Development
  289. - ASPNETCORE_URLS=http://0.0.0.0:80
  290. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  291. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  292. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  293. - AzureServiceBusEnabled=False
  294. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  295. - OrchestratorType=${ORCHESTRATOR_TYPE}
  296. - identityUrl=http://identity.api
  297. ports:
  298. - "5112:80"
  299. webstatus:
  300. environment:
  301. - ASPNETCORE_ENVIRONMENT=Production
  302. - ASPNETCORE_URLS=http://0.0.0.0:80
  303. - HealthChecks-UI__HealthChecks__0__Name=WebMVC HTTP Check
  304. - HealthChecks-UI__HealthChecks__0__Uri=http://webmvc/hc
  305. - HealthChecks-UI__HealthChecks__1__Name=WebSPA HTTP Check
  306. - HealthChecks-UI__HealthChecks__1__Uri=http://webspa/hc
  307. - HealthChecks-UI__HealthChecks__2__Name=Web Shopping Aggregator GW HTTP Check
  308. - HealthChecks-UI__HealthChecks__2__Uri=http://webshoppingagg/hc
  309. - HealthChecks-UI__HealthChecks__3__Name=Mobile Shopping Aggregator HTTP Check
  310. - HealthChecks-UI__HealthChecks__3__Uri=http://mobileshoppingagg/hc
  311. - HealthChecks-UI__HealthChecks__4__Name=Mobile Shopping API GW HTTP Check
  312. - HealthChecks-UI__HealthChecks__4__Uri=http://mobileshoppingapigw/hc
  313. - HealthChecks-UI__HealthChecks__5__Name=Mobile Marketing API GW HTTP Check
  314. - HealthChecks-UI__HealthChecks__5__Uri=http://mobilemarketingapigw/hc
  315. - HealthChecks-UI__HealthChecks__6__Name=Web Shopping API GW HTTP Check
  316. - HealthChecks-UI__HealthChecks__6__Uri=http://webshoppingapigw/hc
  317. - HealthChecks-UI__HealthChecks__7__Name=Web Marketing API GW HTTP Check
  318. - HealthChecks-UI__HealthChecks__7__Uri=http://webmarketingapigw/hc
  319. - HealthChecks-UI__HealthChecks__8__Name=Ordering HTTP Check
  320. - HealthChecks-UI__HealthChecks__8__Uri=http://ordering.api/hc
  321. - HealthChecks-UI__HealthChecks__9__Name=Ordering HTTP Background Check
  322. - HealthChecks-UI__HealthChecks__9__Uri=http://ordering.backgroundtasks/hc
  323. - HealthChecks-UI__HealthChecks__10__Name=Basket HTTP Check
  324. - HealthChecks-UI__HealthChecks__10__Uri=http://basket.api/hc
  325. - HealthChecks-UI__HealthChecks__11__Name=Catalog HTTP Check
  326. - HealthChecks-UI__HealthChecks__11__Uri=http://catalog.api/hc
  327. - HealthChecks-UI__HealthChecks__12__Name=Identity HTTP Check
  328. - HealthChecks-UI__HealthChecks__12__Uri=http://identity.api/hc
  329. - HealthChecks-UI__HealthChecks__13__Name=Marketing HTTP Check
  330. - HealthChecks-UI__HealthChecks__13__Uri=http://marketing.api/hc
  331. - HealthChecks-UI__HealthChecks__14__Name=Locations HTTP Check
  332. - HealthChecks-UI__HealthChecks__14__Uri=http://locations.api/hc
  333. - HealthChecks-UI__HealthChecks__15__Name=Payments HTTP Check
  334. - HealthChecks-UI__HealthChecks__15__Uri=http://payment.api/hc
  335. - HealthChecks-UI__HealthChecks__16__Name=Ordering SignalRHub HTTP Check
  336. - HealthChecks-UI__HealthChecks__16__Uri=http://ordering.signalrhub/hc
  337. - OrderingBackgroundTasksUrl=http://ordering.backgroundtasks/hc
  338. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  339. - OrchestratorType=${ORCHESTRATOR_TYPE}
  340. ports:
  341. - "5107:80"
  342. webspa:
  343. environment:
  344. - ASPNETCORE_ENVIRONMENT=Development
  345. - ASPNETCORE_URLS=http://0.0.0.0:80
  346. - IdentityUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  347. - PurchaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  348. - MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5203
  349. - PurchaseUrlHC=http://webshoppingapigw/hc
  350. - MarketingUrlHC=http://webmarketingapigw/hc
  351. - IdentityUrlHC=http://identity.api/hc
  352. - UseCustomizationData=True
  353. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  354. - OrchestratorType=${ORCHESTRATOR_TYPE}
  355. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  356. ports:
  357. - "5104:80"
  358. webmvc:
  359. environment:
  360. - ASPNETCORE_ENVIRONMENT=Development
  361. - ASPNETCORE_URLS=http://0.0.0.0:80
  362. - PurchaseUrl=http://webshoppingapigw
  363. - IdentityUrl=http://10.0.75.1:5105
  364. - MarketingUrl=http://webmarketingapigw
  365. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  366. - IdentityUrlHC=http://identity.api/hc
  367. - PurchaseUrlHC=http://webshoppingapigw/hc
  368. - MarketingUrlHC=http://webmarketingapigw/hc
  369. - UseCustomizationData=True
  370. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  371. - OrchestratorType=${ORCHESTRATOR_TYPE}
  372. - UseLoadTest=${USE_LOADTEST:-False}
  373. ports:
  374. - "5100:80"
  375. webhooks.client:
  376. environment:
  377. - ASPNETCORE_URLS=http://0.0.0.0:80
  378. - Token=6168DB8D-DC58-4094-AF24-483278923590 # Webhooks are registered with this token (any value is valid) but the client won't check it
  379. - IdentityUrl=http://10.0.75.1:5105
  380. - CallBackUrl=http://localhost:5114
  381. - WebhooksUrl=http://webhooks.api
  382. - SelfUrl=http://webhooks.client/
  383. ports:
  384. - "5114:80"
  385. envoy:
  386. volumes:
  387. - ./src/ApiGateways/Envoy/config:/etc/envoy
  388. ports:
  389. - "51051:51051"