Skip to content

Latest commit

 

History

History
65 lines (51 loc) · 1.94 KB

vs-azure-tools-docker-setup.md

File metadata and controls

65 lines (51 loc) · 1.94 KB
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

Configure a Docker Host with VirtualBox

Overview

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.

Prerequisites

The following tools need to be installed.

Configuring the Docker client with Windows PowerShell

To configure a Docker client, simply open Windows PowerShell, and perform the following steps:

  1. Create a default docker host instance.

    docker-machine create --driver virtualbox default
  2. Verify the default instance is configured and running. (You should see an instance named `default' running.

    docker-machine ls 

    docker-machine ls output

  3. Set default as the current host, and configure your shell.

    docker-machine env default | Invoke-Expression
  4. Display the active Docker containers. The list should be empty.

    docker ps

    docker ps output

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.