I've started working with Docker platform and managing SQL Server Containers. This list are some of the commands I execute most often when using Docker and Containers. --Pull down a container from the Docker registry docker pull --(generic approach)Pull down a sql server container to a valid docker installation on RHEL and run (generic approach) docker pull microsoft/mssql-server-linux docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=LinuxSQLServer123' -p 1433:1433 -d microsoft/mssql-server-linux --(customised approach)Pull down a sql server container to a valid docker installation on RHEL and run Step 1 - Mapping volume names with customised locations **comment - data volume** docker volume...
Read more →