Create ubuntu.sh

This commit is contained in:
hxcde 2023-01-20 09:38:56 +01:00 committed by GitHub
parent ff7a2ea992
commit 29c7f8db72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
ubuntu.sh Normal file
View File

@ -0,0 +1,9 @@
echo installing Docker
sudo apt-get update
sudo apt-get install ca-certificates curl gnupg lsb-release -y
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin docker-compose -y
echo Docker installed