K
This is not necessarily in relation to Angular, it is more related to network and docker.When you use 127.0.0.1, you are telling your server to listen/serve to the virtual network adapter that meets the internal host, also known as loopback.You need to use 0.0.0.0 so that this server, running within your container, is accessible by all network interfaces. Including external access, in the case of servers, for example.When deploying the application to the host, you need to consider using 0.0.0.0 so that the "redirection" enters the network interface publishes and the network interface of your container, works.If your wish is to leave 0.0.0.0 as default, so you don't need to type, you'll need to set in the angle settings file, something like this: https://stackoverflow.com/a/42788609/6394559