Wiki

Clone wiki

DevOps / Docker -Linux

Install Docker for Linux

Update the apt package index

$ sudo apt-get update
Install the latest version of Docker EE, or go to the next step to install a specific version. Any existing installation of Docker EE is replaced.

Use this command to install the latest version of Docker EE:

$ sudo apt-get install docker-ee

Verify that Docker EE is installed correctly by running the hello-world image.

$ sudo docker run hello-world
This command downloads a test image and runs it in a container. When the container runs, it prints an informational message and exits.

Updated