# Conflicts: # docker-compose.vs.debug.yml # docker-compose.vs.release.yml # eShopOnContainers-ServicesAndWebApps.sln # src/Services/Location/Locations.API/Startup.cs # src/Services/Marketing/Marketing.API/Controllers/CampaignsController.cs # src/Services/Marketing/Marketing.API/Marketing.API.csproj # src/Services/Marketing/Marketing.API/Startup.cs # src/Web/WebMVC/appsettings.json # src/Web/WebSPA/AppSettings.cs # test/Services/FunctionalTests/Services/Marketing/MarketingScenarios.cs
25 lines
1.1 KiB
Bash
25 lines
1.1 KiB
Bash
# 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).
|
|
# 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.
|
|
# 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.
|
|
|
|
# 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
|
|
|
|
ESHOP_EXTERNAL_DNS_NAME_OR_IP=localhost
|
|
ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP=10.121.122.92
|
|
|
|
#ESHOP_AZURE_REDIS_BASKET_DB=
|
|
#ESHOP_AZURE_STORAGE_CATALOG=
|
|
#ESHOP_AZURE_STORAGE_MARKETING=
|
|
#ESHOP_AZURE_SERVICE_BUS=
|
|
#ESHOP_AZURE_COSMOSDB=
|
|
#ESHOP_AZURE_CATALOG_DB=
|
|
#ESHOP_AZURE_IDENTITY_DB=
|
|
#ESHOP_AZURE_ORDERING_DB=
|
|
#ESHOP_AZURE_MARKETING_DB=
|
|
#ESHOP_AZUREFUNC_CAMPAIGN_DETAILS_URI=
|
|
#ESHOP_AZURE_STORAGE_CATALOG_NAME=
|
|
#ESHOP_AZURE_STORAGE_CATALOG_KEY=
|
|
#ESHOP_AZURE_STORAGE_MARKETING_NAME=
|
|
#ESHOP_AZURE_STORAGE_MARKETING_KEY=
|
|
|