PrepAway - Latest Free Exam Questions & Answers

Which three actions should you perform in sequence?

Drag and Drop Question
You have a server named Server1 that runs Windows Server 2016. You plan to deploy Internet
Information Services (US) in a Windows container. You need to prepare Server1 for the planned
deployment. Which three actions should you perform in sequence? To answer, move the
appropriate actions from the list of actions to the answer area and arrange them in the correct order.

PrepAway - Latest Free Exam Questions & Answers

Answer:

2 Comments on “Which three actions should you perform in sequence?

  1. davidcertifier says:

    First, install the Containers feature:
    Install-WindowsFeature -Name Containers

    Then, install docker:
    Install-Module -Name DockerMsftProvider -Repository PSGallery -Force
    Install-Package -Name docker -ProviderName DockerMsftProvider
    (This action also enables the Containers feature automatically if it’s not enabled yet, which could make for a different answer)

    Finally, get the Windows Base images:
    docker pull microsoft/windowsservercore
    docker pull microsoft/nanoserver

    Optionally, you can install Hyper-V to gain Hyper-V isolation.

    So the given answer is correct. At that point, you’ll want to use a dockerfile to install the WebServer role, or do it manually and then create a custom docker image from that.




    4



    0

Leave a Reply