March 2018
Intermediate to advanced
816 pages
19h 35m
English
Now that Docker is installed and working, we can investigate what containers we would like to deploy on this machine. The first port of call is Docker Hub (the official Docker repository), which contains several pre-created container images.
By running the docker search microsoft/mssql command, we request a list of images with the terms microsoft and mssql associated with them. The list of available images is constantly changing, with official images from Microsoft and unofficial/privately created images from other Dockers:

To create our first container on our test machine, we will issue a docker ...