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.

406 lines
21 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 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. 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. - WebhooksApiClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5113
  39. - WebhooksWebClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5114
  40. - UseCustomizationData=True
  41. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  42. - OrchestratorType=${ORCHESTRATOR_TYPE}
  43. ports:
  44. - "5105:80"
  45. basket.api:
  46. environment:
  47. - ASPNETCORE_ENVIRONMENT=Development
  48. - ASPNETCORE_URLS=http://0.0.0.0:80
  49. - ConnectionString=${ESHOP_AZURE_REDIS_BASKET_DB:-basket.data}
  50. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  51. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  52. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  53. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  54. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  55. - AzureServiceBusEnabled=False
  56. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  57. - OrchestratorType=${ORCHESTRATOR_TYPE}
  58. - UseLoadTest=${USE_LOADTEST:-False}
  59. ports:
  60. - "5103:80" # Important: In a production environment your should remove the external port (5103) kept here for microservice debugging purposes.
  61. # The API Gateway redirects and access through the internal port (80).
  62. catalog.api:
  63. environment:
  64. - ASPNETCORE_ENVIRONMENT=Development
  65. - ASPNETCORE_URLS=http://0.0.0.0:80
  66. - ConnectionString=${ESHOP_AZURE_CATALOG_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word}
  67. - 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.
  68. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  69. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  70. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  71. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_CATALOG_NAME}
  72. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_CATALOG_KEY}
  73. - UseCustomizationData=True
  74. - AzureServiceBusEnabled=False
  75. - AzureStorageEnabled=False
  76. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  77. - OrchestratorType=${ORCHESTRATOR_TYPE}
  78. ports:
  79. - "5101:80" # Important: In a production environment your should remove the external port (5101) kept here for microservice debugging purposes.
  80. # The API Gateway redirects and access through the internal port (80).
  81. ordering.api:
  82. environment:
  83. - ASPNETCORE_ENVIRONMENT=Development
  84. - ASPNETCORE_URLS=http://0.0.0.0:80
  85. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  86. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  87. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  88. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  89. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  90. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  91. - UseCustomizationData=True
  92. - AzureServiceBusEnabled=False
  93. - CheckUpdateTime=30000
  94. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  95. - OrchestratorType=${ORCHESTRATOR_TYPE}
  96. - UseLoadTest=${USE_LOADTEST:-False}
  97. ports:
  98. - "5102:80" # Important: In a production environment your should remove the external port (5102) kept here for microservice debugging purposes.
  99. # The API Gateway redirects and access through the internal port (80).
  100. ordering.backgroundtasks:
  101. environment:
  102. - ASPNETCORE_ENVIRONMENT=Development
  103. - ASPNETCORE_URLS=http://0.0.0.0:80
  104. - ConnectionString=${ESHOP_AZURE_ORDERING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word}
  105. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  106. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  107. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  108. - UseCustomizationData=True
  109. - AzureServiceBusEnabled=False
  110. - CheckUpdateTime=30000
  111. - GracePeriodTime=1
  112. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  113. - OrchestratorType=${ORCHESTRATOR_TYPE}
  114. - UseLoadTest=${USE_LOADTEST:-False}
  115. ports:
  116. - "5111:80"
  117. marketing.api:
  118. environment:
  119. - ASPNETCORE_ENVIRONMENT=Development
  120. - ASPNETCORE_URLS=http://0.0.0.0:80
  121. - ConnectionString=${ESHOP_AZURE_MARKETING_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id=sa;Password=Pass@word}
  122. - MongoConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  123. - MongoDatabase=MarketingDb
  124. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  125. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  126. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  127. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  128. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  129. - CampaignDetailFunctionUri=${ESHOP_AZUREFUNC_CAMPAIGN_DETAILS_URI}
  130. - PicBaseUrl=${ESHOP_AZURE_STORAGE_MARKETING_URL:-http://localhost:5110/api/v1/campaigns/[0]/pic/}
  131. - AzureStorageAccountName=${ESHOP_AZURE_STORAGE_MARKETING_NAME}
  132. - AzureStorageAccountKey=${ESHOP_AZURE_STORAGE_MARKETING_KEY}
  133. - AzureServiceBusEnabled=False
  134. - AzureStorageEnabled=False
  135. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  136. - OrchestratorType=${ORCHESTRATOR_TYPE}
  137. - UseLoadTest=${USE_LOADTEST:-False}
  138. ports:
  139. - "5110:80" # Important: In a production environment your should remove the external port (5110) kept here for microservice debugging purposes.
  140. # The API Gateway redirects and access through the internal port (80).
  141. payment.api:
  142. environment:
  143. - ASPNETCORE_ENVIRONMENT=Development
  144. - ASPNETCORE_URLS=http://0.0.0.0:80
  145. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  146. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  147. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  148. - AzureServiceBusEnabled=False
  149. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  150. - OrchestratorType=${ORCHESTRATOR_TYPE}
  151. ports:
  152. - "5108:80" # Important: In a production environment your should remove the external port (5108) kept here for microservice debugging purposes.
  153. # The API Gateway redirects and access through the internal port (80).
  154. locations.api:
  155. environment:
  156. - ASPNETCORE_ENVIRONMENT=Development
  157. - ASPNETCORE_URLS=http://0.0.0.0:80
  158. - ConnectionString=${ESHOP_AZURE_COSMOSDB:-mongodb://nosql.data}
  159. - Database=LocationsDb
  160. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  161. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  162. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  163. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  164. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  165. - AzureServiceBusEnabled=False
  166. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  167. - OrchestratorType=${ORCHESTRATOR_TYPE}
  168. - UseLoadTest=${USE_LOADTEST:-False}
  169. ports:
  170. - "5109:80" # Important: In a production environment your should remove the external port (5109) kept here for microservice debugging purposes.
  171. # The API Gateway redirects and access through the internal port (80).
  172. webhooks.api:
  173. environment:
  174. - ASPNETCORE_ENVIRONMENT=Development
  175. - ASPNETCORE_URLS=http://0.0.0.0:80
  176. - ConnectionString=${ESHOP_AZURE_WEBHOOKS_DB:-Server=sql.data;Database=Microsoft.eShopOnContainers.Services.WebhooksDb;User Id=sa;Password=Pass@word}
  177. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  178. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  179. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  180. - IdentityUrl=http://identity.api
  181. - IdentityUrlExternal=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105
  182. ports:
  183. - "5113:80" # Important: In a production environment your should remove the external port (5109) kept here for microservice debugging purposes.
  184. # The API Gateway redirects and access through the internal port (80).
  185. mobileshoppingapigw:
  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. - urls__basket=http://basket.api
  190. - urls__catalog=http://catalog.api
  191. - urls__orders=http://ordering.api
  192. - urls__identity=http://identity.api
  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. - "5200:80"
  202. volumes:
  203. - ./src/ApiGateways/Mobile.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  204. mobilemarketingapigw:
  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. - "5201:80"
  217. volumes:
  218. - ./src/ApiGateways/Mobile.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  219. webshoppingapigw:
  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. - "5202:80"
  232. volumes:
  233. - ./src/ApiGateways/Web.Bff.Shopping/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  234. webmarketingapigw:
  235. environment:
  236. - ASPNETCORE_ENVIRONMENT=Development
  237. - IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  238. - CatalogUrlHC=http://catalog.api/hc
  239. - OrderingUrlHC=http://ordering.api/hc
  240. - IdentityUrlHC=http://identity.api/hc
  241. - BasketUrlHC=http://basket.api/hc
  242. - MarketingUrlHC=http://marketing.api/hc
  243. - PaymentUrlHC=http://payment.api/hc
  244. - LocationUrlHC=http://locations.api/hc
  245. ports:
  246. - "5203:80"
  247. volumes:
  248. - ./src/ApiGateways/Web.Bff.Marketing/apigw:${ESHOP_OCELOT_VOLUME_SPEC:-/app/configuration}
  249. mobileshoppingagg:
  250. environment:
  251. - ASPNETCORE_ENVIRONMENT=Development
  252. - urls__basket=http://basket.api
  253. - urls__catalog=http://catalog.api
  254. - urls__orders=http://ordering.api
  255. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  256. - CatalogUrlHC=http://catalog.api/hc
  257. - OrderingUrlHC=http://ordering.api/hc
  258. - IdentityUrlHC=http://identity.api/hc
  259. - BasketUrlHC=http://basket.api/hc
  260. - MarketingUrlHC=http://marketing.api/hc
  261. - PaymentUrlHC=http://payment.api/hc
  262. - LocationUrlHC=http://locations.api/hc
  263. ports:
  264. - "5120:80" # Important: In a production environment your should remove the external port (5120) kept here for microservice debugging purposes.
  265. # The API Gateway redirects and access through the internal port (80).
  266. webshoppingagg:
  267. environment:
  268. - ASPNETCORE_ENVIRONMENT=Development
  269. - urls__basket=http://basket.api
  270. - urls__catalog=http://catalog.api
  271. - urls__orders=http://ordering.api
  272. - urls__identity=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  273. - CatalogUrlHC=http://catalog.api/hc
  274. - OrderingUrlHC=http://ordering.api/hc
  275. - IdentityUrlHC=http://identity.api/hc
  276. - BasketUrlHC=http://basket.api/hc
  277. - MarketingUrlHC=http://marketing.api/hc
  278. - PaymentUrlHC=http://payment.api/hc
  279. - LocationUrlHC=http://locations.api/hc
  280. ports:
  281. - "5121:80" # Important: In a production environment your should remove the external port (5121) kept here for microservice debugging purposes.
  282. # The API Gateway redirects and access through the internal port (80).
  283. ordering.signalrhub:
  284. environment:
  285. - ASPNETCORE_ENVIRONMENT=Development
  286. - ASPNETCORE_URLS=http://0.0.0.0:80
  287. - EventBusConnection=${ESHOP_AZURE_SERVICE_BUS:-rabbitmq}
  288. - EventBusUserName=${ESHOP_SERVICE_BUS_USERNAME}
  289. - EventBusPassword=${ESHOP_SERVICE_BUS_PASSWORD}
  290. - AzureServiceBusEnabled=False
  291. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  292. - OrchestratorType=${ORCHESTRATOR_TYPE}
  293. - identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
  294. ports:
  295. - "5112:80"
  296. webstatus:
  297. environment:
  298. - ASPNETCORE_ENVIRONMENT=Development
  299. - ASPNETCORE_URLS=http://0.0.0.0:80
  300. - HealthChecks-UI__HealthChecks__1__Name=WebMVC HTTP Check
  301. - HealthChecks-UI__HealthChecks__1__Uri=http://webmvc/hc
  302. - HealthChecks-UI__HealthChecks__2__Name=WebSPA HTTP Check
  303. - HealthChecks-UI__HealthChecks__2__Uri=http://webspa/hc
  304. - HealthChecks-UI__HealthChecks__3__Name=Web Shopping Aggregator GW HTTP Check
  305. - HealthChecks-UI__HealthChecks__3__Uri=http://webshoppingagg/hc
  306. - HealthChecks-UI__HealthChecks__4__Name=Mobile Shopping Aggregator HTTP Check
  307. - HealthChecks-UI__HealthChecks__4__Uri=http://mobileshoppingagg/hc
  308. - HealthChecks-UI__HealthChecks__5__Name=Mobile Shopping API GW HTTP Check
  309. - HealthChecks-UI__HealthChecks__5__Uri=http://mobileshoppingapigw/hc
  310. - HealthChecks-UI__HealthChecks__6__Name=Mobile Marketing API GW HTTP Check
  311. - HealthChecks-UI__HealthChecks__6__Uri=http://mobilemarketingapigw/hc
  312. - HealthChecks-UI__HealthChecks__7__Name=Web Shopping API GW HTTP Check
  313. - HealthChecks-UI__HealthChecks__7__Uri=http://webshoppingapigw/hc
  314. - HealthChecks-UI__HealthChecks__8__Name=Web Marketing API GW HTTP Check
  315. - HealthChecks-UI__HealthChecks__8__Uri=http://webmarketingapigw/hc
  316. - HealthChecks-UI__HealthChecks__9__Name=Ordering HTTP Check
  317. - HealthChecks-UI__HealthChecks__9__Uri=http://ordering.api/hc
  318. - HealthChecks-UI__HealthChecks__10__Name=Ordering HTTP Background Check
  319. - HealthChecks-UI__HealthChecks__10__Uri=http://ordering.backgroundtasks/hc
  320. - HealthChecks-UI__HealthChecks__11__Name=Basket HTTP Check
  321. - HealthChecks-UI__HealthChecks__11__Uri=http://basket.api/hc
  322. - HealthChecks-UI__HealthChecks__12__Name=Catalog HTTP Check
  323. - HealthChecks-UI__HealthChecks__12__Uri=http://catalog.api/hc
  324. - HealthChecks-UI__HealthChecks__13__Name=Identity HTTP Check
  325. - HealthChecks-UI__HealthChecks__13__Uri=http://identity.api/hc
  326. - HealthChecks-UI__HealthChecks__14__Name=Marketing HTTP Check
  327. - HealthChecks-UI__HealthChecks__14__Uri=http://marketing.api/hc
  328. - HealthChecks-UI__HealthChecks__15__Name=Locations HTTP Check
  329. - HealthChecks-UI__HealthChecks__15__Uri=http://locations.api/hc
  330. - HealthChecks-UI__HealthChecks__16__Name=Payments HTTP Check
  331. - HealthChecks-UI__HealthChecks__16__Uri=http://payment.api/hc
  332. - HealthChecks-UI__HealthChecks__17__Name=Ordering SignalRHub HTTP Check
  333. - HealthChecks-UI__HealthChecks__17__Uri=http://ordering.signalrhub/hc
  334. - OrderingBackgroundTasksUrl=http://ordering.backgroundtasks/hc
  335. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  336. - OrchestratorType=${ORCHESTRATOR_TYPE}
  337. ports:
  338. - "5107:80"
  339. webspa:
  340. environment:
  341. - ASPNETCORE_ENVIRONMENT=Development
  342. - ASPNETCORE_URLS=http://0.0.0.0:80
  343. - 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.
  344. - PurchaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  345. - MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5203
  346. - PurchaseUrlHC=http://webshoppingapigw/hc
  347. - MarketingUrlHC=http://webmarketingapigw/hc
  348. - IdentityUrlHC=http://identity.api/hc
  349. - UseCustomizationData=True
  350. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  351. - OrchestratorType=${ORCHESTRATOR_TYPE}
  352. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  353. ports:
  354. - "5104:80"
  355. webmvc:
  356. environment:
  357. - ASPNETCORE_ENVIRONMENT=Development
  358. - ASPNETCORE_URLS=http://0.0.0.0:80
  359. - PurchaseUrl=http://webshoppingapigw
  360. - 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.
  361. - MarketingUrl=http://webmarketingapigw
  362. - SignalrHubUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5202
  363. - IdentityUrlHC=http://identity.api/hc
  364. - PurchaseUrlHC=http://webshoppingapigw/hc
  365. - MarketingUrlHC=http://webmarketingapigw/hc
  366. - UseCustomizationData=True
  367. - ApplicationInsights__InstrumentationKey=${INSTRUMENTATION_KEY}
  368. - OrchestratorType=${ORCHESTRATOR_TYPE}
  369. - UseLoadTest=${USE_LOADTEST:-False}
  370. ports:
  371. - "5100:80"
  372. webhooks.client:
  373. environment:
  374. - ASPNETCORE_URLS=http://0.0.0.0:80
  375. - Token=6168DB8D-DC58-4094-AF24-483278923590 # Webhooks are registered with this token (any value is valid) but the client won't check it
  376. - IdentityUrl=http://10.0.75.1:5105
  377. - CallBackUrl=http://localhost:5114
  378. - WebhooksUrl=http://webhooks.api
  379. - SelfUrl=http://webhooks.client/
  380. ports:
  381. - "5114:80"