mirror of
https://github.com/The-Art-of-Hacking/h4cker
synced 2024-11-10 05:34:12 +00:00
5 lines
281 B
Bash
5 lines
281 B
Bash
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
|
|
echo 'deb [arch=amd64] https://download.docker.com/linux/debian buster stable' | sudo tee /etc/apt/sources.list.d/docker.list
|
|
apt update
|
|
apt remove docker docker-engine docker.io
|
|
apt install -y docker-ce
|