How to Install and Use Docker on Debian 10 Linux | Linuxize
linuxize.com › post › how-to-install-and-use-dockerJul 30, 2019 · Install Docker on Debian # Perform the following steps to install the latest stable Docker version from the Docker’s repositories. Install the packages necessary to add a new repository over HTTPS: sudo apt updatesudo apt install apt-transport-https ca-certificates curl software-properties-common gnupg2; Import the repository’s GPG key using the following curl command: curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
Install Docker Engine on Debian | Docker Documentation
docs.docker.com › engine › installUpdate 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. Add Docker’s official GPG key: $ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg. Use the following command to set up the stable repository.