Docker installation on Debian
- September 15th, 2021
- Posted in Documentation
- Write comment
Remove any old versions of docker:
sudo apt-get remove docker docker-engine docker.io containerd runc
Install dependencies:
sudo apt-get install apt-transport-https ca-certificates curl gnupg lsb-release
Add the docker key:
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg –dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
Add the docker repository to the apt configuration:
echo “deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable” | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Update the repository list:
sudo apt-get update
Install docker:
sudo apt-get install docker-ce docker-ce-cli containerd.io
Test docker by installing and running the hello-world image from Docker Hub:
sudo docker run hello-world
Install docker-compose from https://github.com/docker/compose/releases/:
Download the docker-compose binary and sha256sum file:
cd /usr/local/src/
wget https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Linux-x86_64
wget https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Linux-x86_64.sha256
Verify the sha256sum for the binary:
sha256sum -c docker-compose-Linux-x86_64.sha256sum
Copy the binary to your path (/usr/local/bin) and set the execute permissions:
cp -p docker-compose-Linux-x86_64 /usr/local/bin/docker-compose
chmod 744 /usr/local/bin/docker-compose
No comments yet.