Use external configuration for your web app (docker, mount volume to /assets/config)
Edit maitn.ts
in main.ts :
environmentLoader("./assets/config/environment.json", environment).then(env => {
environment.production = env.production;
environment.settings = env.settings;
// Default angular initialization
if (environment.production) {
enableProdMode();
}