How to push the correct configuration data with C# worker service to swarm/kubernetes?

Advertisements I have 3 configs in service: 1 – appsettings.development.json 2 – appsettings.testing.json 3 – appsettings.production.json And i have 3 launch settings for them as well in launchsettings.json: { "profiles": { "DevelopmentDockerProfile" { "commandName": "Docker", "environmentVariables": { "DOTNET_ENVIRONMENT": "development" } }, "ProductionDockerProfile" { "commandName": "Docker", "environmentVariables": { "DOTNET_ENVIRONMENT": "production" } }, "TestingDockerProfile" { "commandName": "Docker",… Read More How to push the correct configuration data with C# worker service to swarm/kubernetes?