Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add section to install Windows Updates #390

Merged
merged 3 commits into from
Oct 25, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,35 @@ When PowerShell asks you whether to trust the package source 'DockerDefault', ty
Restart-Computer -Force
```

## 2. Deploy Your First Container
## 2. Install Windows Updates

To ensure your Windows Server system is up-to-date, you should install Windows Updates by running:

```none
sconfig
```

You'll see a text-based configuration menu, where you can choose option 6 to Download and Install Updates:

```none
===============================================================================
Server Configuration
===============================================================================

1) Domain/Workgroup: Workgroup: WORKGROUP
2) Computer Name: WIN-HEFDK4V68M5
3) Add Local Administrator
4) Configure Remote Management Enabled

5) Windows Update Settings: DownloadOnly
6) Download and Install Updates
7) Remote Desktop: Disabled
...
```

When prompted, choose option A to download all updates.

## 3. Deploy Your First Container

For this exercise, you will download a pre-created .NET sample image from the Docker Hub registry and deploy a simple container running a .Net Hello World application..

Expand Down