Install Docker CE in 7 easy steps (Mint 19.1 or Ubuntu 18.04)

Опубликовано: 07 Октябрь 2024
на канале: Geeky Mon2
5,643
81

Install Docker CE in Linux Mint 19.1 or Ubuntu 18.04

1. Update the packages index
$ sudo apt-get update

2. Install packages to allow apt to use repository over https
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common

3. Add docker GPG key
$ curl -fsSL https://download.docker.com/linux/ubu... | sudo apt-key add

4. Add key fingerprint
$ sudo apt-key fingerprint 0EBFCD88

5. add the repository for Ubuntu 18.04 or Mint 19.1
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"

6. Update index
$ sudo apt-get update

7. Install docker
$ sudo apt-get install docker-ce

-~-~~-~~~-~~-~
Please watch: "Useful VS Code Extensions for Flutter Development"
   • Useful VS Code Extensions for Flutter...  
~-~~-~~~-~~-~