Install Docker Desktop on Ubuntu 22.04 LTS

Install Docker Desktop on Ubuntu

Prerequisites
  • For non-Gnome Desktop environments, gnome terminal must be installed:
        $ sudo apt install gnome-terminal
  • Set up the repository

    1. Update the apt package index and install packages to allow apt to use a repository over HTTPS:

    $ sudo apt-get update

    $ sudo apt-get install ca-certificates curl gnupg lsb-release

    2. Add Docker’s official GPG key:

    $ sudo mkdir -p /etc/apt/keyrings
    $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg

    3. Use the following command to set up the repository:

    $ echo \
       "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
    $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Install

  1. Download the latest Docker Desktop version file.
  2. Install the package with apt as follows:

    $ sudo apt-get update
    $ sudo apt-get install Downloads/docker-desktop-<version>-<arch>.deb

Comments

Popular posts from this blog

Using Virtual Columns in Laravel - Accessors and Appends

How to Show Cookie Policy Consent or GDPR Popup in Laravel using Cookie.

Postman Collection Run - How to Test File Uploading API on CircleCi or Jenkins