How do you connect to a SQL Server database on a host (or even in the cloud, as in off the local network) from a windows server-based container? I've tried using
docker run --net="nat" ...
and
docker run --net="host" ...
to no avail.
Using -p does not seem relevant as I want to container to talk to the SQL Server database not running in a container.
I'm not sure how a custom network bridge can work here but I'm open to trying.