mirror of
https://github.com/The-Art-of-Hacking/h4cker.git
synced 2024-10-01 01:25:43 -04:00
6 lines
281 B
Bash
6 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
|