Download Docker

For Windows and Mac, you will download Docker Desktop. For Linux, you will download Docker Engine. This is for historical reasons regarding the workarounds that were needed to port Docker to Mac and Windows.

First download and setup Docker Engine using the instructions at the link below for your OS:

Open a new terminal on your computer. You should have used your computer’s terminal in prior courses, but to ensure consistency:

  • Windows: use cmd, aka Command Prompt
  • MacOS: use terminal
  • Linux: depends on specific distribution, you should know what your terminal is if you are using Linux :).

Verify that your docker installation is working by running the following command:

$ docker run hello-world

If your docker installation is working you should get the following output:

Hello from Docker.
This message shows that your installation appears to be working correctly.
...