Skip to content

Commit

Permalink
Update manage_powershell.md
Browse files Browse the repository at this point in the history
there is no example of how to list existing containers.

had to find it on a different page: https://msdn.microsoft.com/en-us/virtualization/windowscontainers/reference/ps_docker_comparison
  • Loading branch information
shi-yan committed Dec 21, 2015
1 parent 850ded7 commit 6bb27ad
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions virtualization/windowscontainers/quick_start/manage_powershell.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,16 @@ Name State Uptime ParentImageName
TP4Demo Off 00:00:00 WindowsServerCore
```

To visualize exisiting containers, use the `Get-Container` command.

```powershell
PS C:\> Get-Container
Name State Uptime ParentImageName
---- ----- ------ ---------------
TP4Demo Off 00:00:00 WindowsServerCore
```

Start the container using the `Start-Container` command.

```powershell
Expand Down

0 comments on commit 6bb27ad

Please sign in to comment.