You have a Nano Server named Nano1. You deploy several containers to Nano1 that use an image
named Image1. You need to deploy a new container to Nano1 that uses Image1. What should you
run?
A.
the Install-NanoServerPackage cmdlet
B.
the Install-Windows Feature cmdlet
C.
the docker load command
D.
the docker run command
C, right?
docker load – Load an image from a tar archive or STDIN
docker run – Run a command in a new container
https://docs.docker.com/engine/reference/commandline/docker/#child-commands
It is D. The command below will create a container from the image “microsoft/nanoserver” and will open a command prompt which you can use to run commands within that container
docker run -it microsoft/nanoserver cmd
Deploy a new container = docker run
Correct Answer: D