opolewx.blogg.se

Sql server configuration manager
Sql server configuration manager








sql server configuration manager

network host: Doesn't isolate network of container from host, which makes it accessible from outside world ( see update) (1433 is the default port for SQL Server)

sql server configuration manager

p 8000:1433: Maps port 1433 of container to port 8000 of host (host comes first) d : runs the container in detached mode, i.e. To make your container accessible over network, you should map a port of it to a port on your host, and also run it in -network host mode: docker run -d -p 8000:1433 -network host -name my_container my_image If you make your docker container accessible over network, then you can access it exactly like a remote machine, and as it stated here in Microsoft documentation, you can run SQL Server Configuration Manager for remote machines.










Sql server configuration manager