You have a server named Server1 that runs Windows Server 2016.
You plan to deploy Internet Information Services (IIS) in a Windows container.
You need to prepare Server1 for the planned deployment.
Which three actions should you perform? Each correct answer presents part of the solution.

A.
Install the Container feature.
B.
Install Docker.
C.
Install the Base Container Images.
D.
Install the Web Server role.
E.
Install the Hyper-V server role.
Read carefully, the question is “You need to prepare Server1 for the planned deployment”.
Correct order is: A, B, C. Same question with explanation: https://www.briefmenow.org/microsoft/which-three-actions-should-you-perform-458/
9
0
A B and C.
1-You need first add the Container Feature.
Enable-WindowsOptionalFeature -Online -FeatureName containers -All
2-then you need install OneGet module:
Install-Module -Name DockerMsftProvider -Repository PSGallery -Force
3-then you install docker:
Install-Package -Name docker -ProviderName DockerMsftProvider
4-finally, you pull the nanoserver base image:
docker pull microsoft/nanoserver
3
1