19 lines
506 B
Bash
19 lines
506 B
Bash
|
apt-get remove docker docker-engine docker.io containerd runc
|
||
|
apt-get install -y \
|
||
|
apt-transport-https \
|
||
|
ca-certificates \
|
||
|
curl \
|
||
|
gnupg-agent \
|
||
|
software-properties-common
|
||
|
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
|
||
|
add-apt-repository \
|
||
|
"deb [arch=amd64] https://download.docker.com/linux/debian \
|
||
|
buster \
|
||
|
stable"
|
||
|
apt-get update -y
|
||
|
apt-get install -y docker-ce docker-ce-cli containerd.io
|
||
|
|
||
|
apt install python3-pip -y
|
||
|
pip3 install docker-compose
|
||
|
|