So let's say I've a .NET Core application running in a container, i'm running it on a custom network with it's own IP in the subnet ( important that the IP stays the same for this app).
I've added some new functionality to my .NET Core application and want to redeploy it. Is it possible that I pull the new image, just stop the container, "update" it's image and restart the container, instead of stopping, removing and running the image again with the right commands for the network and ip?
Regards!