Get started with Docker for Windows

Estimated reading time: 23 minutes

Welcome to Docker for Windows!

Docker is a full development platform for creating containerized apps, and Docker for Windows is the best way to get started with Docker on Windows systems.

Got Docker for Windows? If you have not yet installed Docker for Windows, please see Install Docker for Windows for an explanation of stable and edge channels, system requirements, and download/install information.

Looking for system requirements? Check out What to know before you install, which has moved to the new install topic.

Check versions of Docker Engine, Compose, and Machine

Start your favorite shell (cmd.exe, PowerShell, or other) to check your versions of docker and docker-compose, and verify the installation.

PS C:\Users\Docker> docker --version
Docker version 17.03.0-ce, build 60ccb22

PS C:\Users\Docker> docker-compose --version
docker-compose version 1.11.2, build dfed245

PS C:\Users\Docker> docker-machine --version
docker-machine version 0.10.0, build 76ed2a6

Explore the application and run examples

The next few steps take you through some examples. These are just suggestions for ways to experiment with Docker on your system, check version information, and make sure docker commands are working properly.

  1. Open a shell (cmd.exe, PowerShell, or other).

  2. Run some Docker commands, such as docker ps, docker version, and docker info.

    Here is the output of docker ps run in a powershell. (In this example, no containers are running yet.)

    PS C:\Users\jdoe> docker ps
    
    CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES
    

    Here is an example of command output for docker version.

    PS C:\Users\Docker> docker version
    Client:
    Version:      17.03.0-ce
    API version:  1.26
    Go version:   go1.7.5
    Git commit:   60ccb22
    Built:        Thu Feb 23 10:40:59 2017
    OS/Arch:      windows/amd64
    
    Server:
    Version:      17.03.0-ce
    API version:  1.26 (minimum version 1.12)
    Go version:   go1.7.5
    Git commit:   3a232c8
    Built:        Tue Feb 28 07:52:04 2017
    OS/Arch:      linux/amd64
    Experimental: true
    

    Here is an example of command output for docker info.

    PS C:\Users\Docker> docker info
    Containers: 0
     Running: 0
     Paused: 0
     Stopped: 0
    Images: 0
    Server Version: 17.03.0-ce
    Storage Driver: overlay2
     Backing Filesystem: extfs
     Supports d_type: true
     Native Overlay Diff: true
    Logging Driver: json-file
    Cgroup Driver: cgroupfs
    Plugins:
     Volume: local
     Network: bridge host ipvlan macvlan null overlay
    Swarm: inactive
    Runtimes: runc
    Default Runtime: runc
    Init Binary: docker-init
    containerd version: 977c511eda0925a723debdc94d09459af49d082a
    runc version: a01dafd48bc1c7cc12bdb01206f9fea7dd6feb70
    init version: 949e6fa
    Security Options:
     seccomp
      Profile: default
    Kernel Version: 4.9.12-moby
    Operating System: Alpine Linux v3.5
    OSType: linux
    Architecture: x86_64
    CPUs: 2
    Total Memory: 1.934 GiB
    Name: moby
    ID: BM4O:645U:LUS6:OGMD:O6WH:JINS:K7VF:OVDZ:7NE4:ZVJT:PSMQ:5UA6
    Docker Root Dir: /var/lib/docker
    Debug Mode (client): false
    Debug Mode (server): true
     File Descriptors: 13
     Goroutines: 21
     System Time: 2017-03-02T16:59:13.417299Z
     EventsListeners: 0
    Registry: https://index.docker.io/v1/
    Experimental: true
    Insecure Registries:
     127.0.0.0/8
    Live Restore Enabled: false
    

    Note: The outputs above are examples. Your output for commands like docker version and docker info will vary depending on your product versions (e.g., as you install newer versions).

  3. Run docker run hello-world to test pulling an image from Docker Hub and starting a container.

    PS C:\Users\jdoe> docker run hello-world
    
    Hello from Docker.
    This message shows that your installation appears to be working correctly.
    
    To generate this message, Docker took the following steps:
    1. The Docker client contacted the Docker daemon.
    2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading.
    4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal.
    
  4. Try something more ambitious, and run an Ubuntu container with this command.

    PS C:\Users\jdoe> docker run -it ubuntu bash
    

    This will download the ubuntu container image and start it. Here is the output of running this command in a powershell.

    PS C:\Users\jdoe> docker run -it ubuntu bash
    
    Unable to find image 'ubuntu:latest' locally
    latest: Pulling from library/ubuntu
    5a132a7e7af1: Pull complete
    fd2731e4c50c: Pull complete
    28a2f68d1120: Pull complete
    a3ed95caeb02: Pull complete
    Digest: sha256:4e85ebe01d056b43955250bbac22bdb8734271122e3c78d21e55ee235fc6802d
    Status: Downloaded newer image for ubuntu:latest
    

    Type exit to stop the container and close the powershell.

  5. Start a Dockerized webserver with this command:

    PS C:\Users\jdoe> docker run -d -p 80:80 --name webserver nginx
    

    This will download the nginx container image and start it. Here is the output of running this command in a powershell.

    PS C:\Users\jdoe> docker run -d -p 80:80 --name webserver nginx
    
    Unable to find image 'nginx:latest' locally
    latest: Pulling from library/nginx
    
    fdd5d7827f33: Pull complete
    a3ed95caeb02: Pull complete
    716f7a5f3082: Pull complete
    7b10f03a0309: Pull complete
    Digest: sha256:f6a001272d5d324c4c9f3f183e1b69e9e0ff12debeb7a092730d638c33e0de3e
    Status: Downloaded newer image for nginx:latest
    dfe13c68b3b86f01951af617df02be4897184cbf7a8b4d5caf1c3c5bd3fc267f
    
  6. Point your web browser at http://localhost to display the start page.

    (Since you specified the default HTTP port, it isn’t necessary to append :80 at the end of the URL.)

    Run nginx edge>

  7. Run docker ps while your webserver is running to see details on the container.

    PS C:\Users\jdoe> docker ps
    
    CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS
    NAMES
    dfe13c68b3b8        nginx               "nginx -g 'daemon off"   3 days ago          Up 45 seconds       0.0.0.0:80->80/tcp, 443/tc
    p   webserver
    
  8. Stop or remove containers and images.

    The nginx webserver will continue to run in the container on that port until you stop and/or remove the container. If you want to stop the webserver, type: docker stop webserver and start it again with docker start webserver.

    To stop and remove the running container with a single command, type: docker rm -f webserver. This will remove the container, but not the nginx image. You can list local images with docker images. You might want to keep some images around so that you don’t have to pull them again from Docker Hub. To remove an image you no longer need, use docker rmi followed by an image ID or image name. For example, docker rmi nginx.

Want more example applications? Get Started and Samples are great places to start.

Set up tab completion in PowerShell

If you would like to have handy tab completion for Docker commands, you can install the posh-docker PowerShell Module as follows.

  1. Start an “elevated” PowerShell (i.e., run it as administrator).

    To do this, search for PowerShell, right-click, and choose Run as administrator.

    Run PowerShell as administrator

    When asked if you want to allow this app to make changes to your device, click Yes.

  2. Set the script execution policy to allow downloaded scripts signed by trusted publishers to run on your computer. To do so, type this at the PowerShell prompt.

    Set-ExecutionPolicy RemoteSigned
    

    To check that the policy is set properly, run get-executionpolicy, which should return RemoteSigned.

  3. To install the posh-docker PowerShell module for auto-completion of Docker commands, type:

    Install-Module posh-docker
    

    Or, to install the module for the current user only, type:

    Install-Module -Scope CurrentUser posh-docker
    
  4. After installation to enable autocompletion for the current PowerShell only, type:

    Import-Module posh-docker
    
  5. To make tab completion persistent across all PowerShell sessions, add the command to a $PROFILE by typing these commands at the PowerShell prompt.

    if (-Not (Test-Path $PROFILE)) {
        New-Item $PROFILE –Type File –Force
    }
    
    Add-Content $PROFILE "`nImport-Module posh-docker"
    

    This creates a $PROFILE if one does not already exist, and adds this line into the file:

    Import-Module posh-docker
    

    To check that the file was properly created, or simply edit it manually, type this in PowerShell:

    Notepad $PROFILE
    

Open a new PowerShell session. Now, when you press tab after typing the first few letters, Docker commands such as start, stop, run, and their options, along with container and image names should now auto-complete.

Docker Settings

When Docker is running, the Docker whale is displayed. By default, the Docker whale icon is placed in the Notifications area. If it is hidden, click the up arrow on the taskbar to show it.

You can dock the whale on the taskbar so it is always visible

You can pin the whale outside of the notification box so that it is always visible on the taskbar. To do this, drag-and-drop the whale icon. Or, right-click an empty portion of the taskbar, select Settings, and choose display options through taskbar settings for notifications.

whale pinned to taskbar

Showing hidden apps in the taskbar

To get a popup menu with application options, right-click the whale:

Docker for Windows popup menu

Note: The above example shows a user signed in for integrated Docker Cloud access. This is currently available only on the Edge channel. To learn more about the feature, see Docker Cloud (Edge feature).

The Settings dialogs provide options to allow Docker auto-start, automatically check for updates, share local drives with Docker containers, enable VPN compatibility, manage CPUs and memory Docker uses, restart Docker, or perform a factory reset.

General

Settings

  • Start Docker when you log in - Automatically start the Docker for Windows application upon Windows system login.

  • Check for updates when the application starts - Docker for Windows is set to automatically check for updates and notify you when an update is available. If an update is found, click OK to accept and install it (or cancel to keep the current version). Uncheck this option if you do not want notifications of version upgrades. You can still find out about updates manually by choosing Check for Updates from the menu.

  • Send usage statistics - You can set Docker for Windows to auto-send diagnostics, crash reports, and usage data. This information can help Docker improve the application and get more context for troubleshooting problems.

    Uncheck any of the options to opt out and prevent auto-send of data. Docker may prompt for more information in some cases, even with auto-send enabled.

Shared Drives

Share your local drives (volumes) with Docker for Windows, so that they are available to your containers.

Shared Drives

You will be asked to provide your Windows system username and password (domain user) to apply shared drives. You can select an option to have Docker store the credentials so that you don’t have to re-enter them every time.

Permissions to access shared drives are tied to the credentials you provide here. If you run docker commands and tasks under a different username than the one used here to set up sharing, your containers will not have permissions to access the mounted volumes.

Tips on shared drives, permissions, and volume mounts

Firewall rules for shared drives

Shared drives require port 445 to be open between the host machine and the virtual machine that runs Linux containers.

Note: Docker detects if port 445 is closed and shows the following message when you try to add a shared drive: Port 445
blocked

To share the drive, allow connections between the Windows host machine and the virtual machine in Windows Firewall or your third party firewall software. You do not need to open port 445 on any other network. By default, allow connections to 10.0.75.1 port 445 (the Windows host) from 10.0.75.2 (the virtual machine). If the firewall rules appear to be open, consider reinstalling the File and Print Sharing service on the virtual network adapter.

Shared drives on demand (Edge feature)

On current Edge releases, sharing a drive can be done “on demand”, the first time a particular mount is requested.

If you run a Docker command from a shell with a volume mount (as shown in the example below) or kick off a Compose file that includes volume mounts, you get a popup asking if you want to share the specified drive.

You can select to Share it, in which case it is added your Docker for Windows Shared Drives list and available to containers. Alternatively, you can opt not to share it by hitting Cancel.

Advanced

CPU and Memory settings

  • CPUs - Change the number of processors assigned to the Linux VM.

  • Memory - Change the amount of memory the Docker for Windows Linux VM uses.

Please note, updating these settings requires a reconfiguration and reboot of the Linux VM. This will take a few seconds.

Network

You can configure Docker for Windows networking to work on a virtual private network (VPN).

  • Internal Virtual Switch - You can specify a network address translation (NAT) prefix and subnet mask to enable internet connectivity.

  • DNS Server - You can configure the DNS server to use dynamic or static IP addressing.

Network settings

Note: Some users reported problems connecting to Docker Hub on Docker for Windows stable version. This would manifest as an error when trying to run docker commands that pull images from Docker Hub that are not already downloaded, such as a first time run of docker run hello-world. If you encounter this, reset the DNS server to use the Google DNS fixed address: 8.8.8.8. For more information, see Networking issues in Troubleshooting.

Note that updating these settings requires a reconfiguration and reboot of the Linux VM.

Proxies

Docker for Windows lets you configure HTTP/HTTPS Proxy Settings and automatically propagate these to Docker and to your containers. For example, if you set your proxy settings to http://proxy.example.com, Docker will use this proxy when pulling containers.

Proxies

When you start a container, you will see that your proxy settings propagate into the containers. For example:

PS C:\Users\jdoe> docker run alpine env
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HOSTNAME=b7edf988b2b5
TERM=xterm
HOME=/root
HTTP_PROXY=http://proxy.example.com:3128
http_proxy=http://proxy.example.com:3128
no_proxy=*.local, 169.254/16

You can see from the above output that the HTTP_PROXY, http_proxy, and no_proxy environment variables are set. When your proxy configuration changes, Docker restarts automatically to pick up the new settings. If you have containers that you wish to keep running across restarts, you should consider using restart policies.

Docker daemon

You can configure options on the Docker daemon that determine how your containers will run. You can configure some Basic options on the daemon with interactive settings, or switch to Advanced to edit the JSON directly.

The settings offered on Basic dialog can be configured directly in the JSON as well. This version just surfaces some of the common settings to make it easier to configure them.

Docker Daemon

Experimental mode

Both Docker for Windows Stable and Edge releases have the experimental version of Docker Engine enabled, described in the Docker Experimental Features README on GitHub.

Experimental features are not appropriate for production environments or workloads. They are meant to be sandbox experiments for new ideas. Some experimental features may become incorporated into upcoming stable releases, but others may be modified or pulled from subsequent Edge releases, and never released on Stable.

On both Edge and Stable releases, you can toggle experimental mode on and off. If you toggle it off, Docker for Windows uses the current generally available release of Docker Engine.

You can check whether you are running experimental mode or not by typing docker version in a PowerShell. Experimental mode is listed under Server data. If Experimental is true, then Docker is running in experimental mode, as shown here. (If false, Experimental mode is off.)

PS C:\Users\Vicky> docker version
Client:
 Version:      1.13.0-rc4
 API version:  1.25
 Go version:   go1.7.3
 Git commit:   88862e7
 Built:        Sat Dec 17 01:34:17 2016
 OS/Arch:      windows/amd64

Server:
 Version:      1.13.0-rc4
 API version:  1.25 (minimum version 1.12)
 Go version:   go1.7.3
 Git commit:   88862e7
 Built:        Sat Dec 17 01:34:17 2016
 OS/Arch:      linux/amd64
 Experimental: true

Custom registries

You can set up your own registries on the Basic Daemon settings.

As an alternative to using Docker Hub to store your public or private images or Docker Trusted Registry, you can use Docker to set up your own insecure registry. Add URLs for insecure registries and registry mirrors on which to host your images. (See also, How do I add custom CA certificates? and How do I add client certificates? in the FAQs.)

Edit the daemon configuration file

The Advanced daemon settings provide the original option to directly edit the JSON configuration file for the daemon.

Docker Daemon

For a full list of options on the Docker daemon, see daemon in the Docker Engine command line reference.

In that topic, see also:

Note that updating these settings requires a reconfiguration and reboot of the Linux VM.

Switch between Windows and Linux containers

You can select which daemon (Linux or Windows) the Docker CLI talks to. Select Switch to Windows containers to toggle to Windows containers. Select Switch to Linux containers.

Windows-Linux container types switch

Microsoft Developer Network has preliminary/draft information on Windows containers here.

For a full list of options on the Docker daemon, see daemon in the Docker Engine command line reference.

In that topic, see also:

Getting started with Windows containers

If you are interested in working with Windows containers, here are some guides to help you get started.

About the Docker Windows containers specific dialogs

When you switch to Windows containers, the Settings panel updates to show only those dialogs that are active and apply to your Windows containers:

Keep in mind that if you set proxies or daemon configuration in Windows containers mode, these apply only on Windows containers. If you switch back to Linux containers, proxies and daemon configurations return to what you had set for Linux containers. Your Windows container settings are retained and become available again when you switch back.

The following settings are not available in Windows containers mode, because they do not apply to Windows containers:

Docker Store

Choose Docker Store from the Docker for Windows menu to get to the Docker app downloads site. Docker store is a component of the next-generation Docker Hub, and the best place to find compliant, trusted commercial and free software distributed as Docker Images.

Docker Store

Docker Cloud (Edge feature)

Note: Integrated Docker Cloud access is currently available only on the Edge channel. On stable, you’ll need to log onto Docker Cloud independently for now.

You can access your Docker Cloud account from within Docker for Windows.

Docker Cloud

From the Docker for Windows menu, sign in to Docker Cloud with your Docker ID, or create one.

Docker Cloud sign-in

Then use the Docker for Windows menu to create, view, or navigate directly to your Cloud resources, including organizations, repositories, and swarms.

Check out these Docker Cloud topics to learn more:

Giving feedback and getting help

To get help from the community, review current user topics, join or start a discussion, log on to our Docker for Windows forum.

To report bugs or problems, log on to Docker for Windows issues on GitHub, where you can review community reported issues, and file new ones. As a part of reporting issues on GitHub, we can help you troubleshoot the log data. See the Diagnose and Feedback topic below.

To give feedback on the documentation or update it yourself, use the Feedback options at the bottom of each docs page.

Diagnose and Feedback

If you encounter problems for which you do not find solutions in this documentation, searching Docker for Windows issues on GitHub already filed by other users, or on the Docker for Windows forum, we can help you troubleshoot the log data.

Select Upload a diagnostic.

This uploads (sends) the logs to Docker.

Diagnose problems and Feedback

To create a new issue directly on GitHub, open Docker for Windows issues on GitHub in your web browser and follow the instructions in the README. Click New Issue on that page to get a “create new issue” template prepopulated with sections for the ID and summary of your diagnostics, system and version details, description of expected and actual behavior, and steps to reproduce the issue.

issue template

Reset

Reset

  • Restart Docker - Shuts down and restarts the Docker application.

  • Reset to Toolbox default machine content - Imports containers and images from the existing Docker Toolbox machine named default. (This option is enabled only if you have Toolbox installed.) The VirtualBox VM will not be removed.

  • Reset to factory defaults - Resets Docker to factory defaults. This is useful in cases where Docker stops working or becomes unresponsive.

Adding TLS certificates

You can add trusted Certificate Authorities (CAs) (used to verify registry server certificates) and client certificates (used to authenticate to registries) to your Docker daemon.

To learn more, see How do I add custom CA certificates? and How do I add client certificates? in the FAQs.

Where to go next

windows, beta, edge, alpha, tutorial