Docker FlashCards

Install Docker

How to install docker


There are mulitple ways to install docker。

Desktop installation

Docker provides installation packages for Windows and Mac to streamline the installation of docker onto the host. The user will need head to DockerHub and search for Docker Desktop for Windows or Docker Desktop for Mac.

Server Installation

  1. Linux
  wget -qO- https://get.docker.com |sh
  1. Windows (window server 2016)
   Install-Module DockerMsftProvider -Force
   Install-Package Docker -ProviderName DockerMsftProvider -Force