title | description | services | documentationcenter | author | manager | editor | ms.assetid | ms.service | ms.devlang | ms.topic | ms.tgt_pltfrm | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Configure a Docker Host with VirtualBox | Microsoft Docs |
Step-by-step instructions to configure a default Docker instance using Docker Machine and VirtualBox |
azure-container-service |
na |
mlearned |
douge |
0b1335a2-7720-42a8-8260-4e06fc00c9f6 |
multiple |
dotnet |
article |
na |
multiple |
06/08/2016 |
mlearned |
This article guides you through configuring a default Docker instance using Docker Machine and VirtualBox. If you’re using the Docker for Windows beta, this configuration is not necessary.
The following tools need to be installed.
To configure a Docker client, simply open Windows PowerShell, and perform the following steps:
-
Create a default docker host instance.
docker-machine create --driver virtualbox default
-
Verify the default instance is configured and running. (You should see an instance named `default' running.
docker-machine ls
-
Set default as the current host, and configure your shell.
docker-machine env default | Invoke-Expression
-
Display the active Docker containers. The list should be empty.
docker ps
Note
Each time you reboot your development machine, you’ll need to restart your local docker host.
To do this, issue the following command at a command prompt: docker-machine start default
.