get docker

  1. Install Docker using the official installation script provided by Docker.

  2. Once the installation is complete, add your user to the "docker" group to allow running Docker commands without using sudo.

  3. Verify that Docker has been successfully installed by running the "docker --version" command in the terminal.

  4. Start the Docker service and enable it to start at boot by using the following commands:

  5. sudo systemctl start docker
  6. sudo systemctl enable docker

  7. Test the Docker installation by running the "docker run hello-world" command to verify that Docker can pull and run images.

  8. You are now ready to use Docker for running containers and managing your applications.