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.

23 lines
1.6 KiB

  1. # Compose supports declaring default environment variables in an environment file named .env placed in the folder docker-compose command is executed from (current working directory).
  2. # Compose expects each line in an env file to be in VAR=VAL format. Lines beginning with # (i.e. comments) are ignored, as are blank lines.
  3. # Note: Values present in the environment at runtime will always override those defined inside the .env file. Similarly, values passed via command-line arguments take precedence as well.
  4. # The IP below should be swapped to your real IP or DNS name, like 192.168.88.248, etc. if testing from remote browsers or mobile devices
  5. ESHOP_EXTERNAL_DNS_NAME_OR_IP=localhost
  6. ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP=10.121.122.92
  7. #ESHOP_AZURE_REDIS_BASKET_DB=<YourAzureRedisBasketInfo>
  8. #ESHOP_AZURE_STORAGE_CATALOG=<YourAzureStorageCatalog>
  9. #ESHOP_AZURE_STORAGE_MARKETING=<YourAzureStorageMarketing>
  10. #ESHOP_AZURE_SERVICE_BUS=<YourAzureServiceBusInfo>
  11. #ESHOP_AZURE_COSMOSDB=<YourAzureCosmosDBConnData>
  12. #ESHOP_AZURE_CATALOG_DB=<YourAzureSQLDBCatalogDBConnString>
  13. #ESHOP_AZURE_IDENTITY_DB=<YourAzureSQLDBIdentityDBConnString>
  14. #ESHOP_AZURE_ORDERING_DB=<YourAzureSQLDBOrderingDBConnString>
  15. #ESHOP_AZURE_MARKETING_DB=<YourAzureSQLDBMarketingDBConnString>
  16. #ESHOP_AZUREFUNC_CAMPAIGN_DETAILS_URI=<YourAzureFunctionCampaignDetailsURI>
  17. #ESHOP_AZURE_STORAGE_CATALOG_NAME=<YourAzureStorageCatalogName>
  18. #ESHOP_AZURE_STORAGE_CATALOG_KEY=<YourAzureStorageCatalogKey>
  19. #ESHOP_AZURE_STORAGE_MARKETING_NAME=<YourAzureStorageMarketingName>
  20. #ESHOP_AZURE_STORAGE_MARKETING_KEY=<YourAzureStorageMarketingKey>