Install docker

Follow this process to install docker on your Linux® machine and run the daemon.

  1. Download and install docker, as shown in the example.
    curl -fsSL https://get.docker.com/ | sh
  2. Start the docker daemon.
    sudo systemctl start docker
  3. Verify that the docker daemon is running.
    sudo systemctl status docker
  4. Enable docker to start each time the system starts.
    sudo systemctl enable docker