You need to deploy a new container to Nano1 that uses Image1

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?

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



Leave a Reply 3

Your email address will not be published. Required fields are marked *


Traveler5

Traveler5

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

dziri

dziri

Deploy a new container = docker run

Correct Answer: D