This website works better with JavaScript.
Home
Explore
Sign In
threefold_public
/
public
Watch
5
Star
1
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
docker
master
Coesens Bert
2 years ago
parent
3a867c05eb
commit
7710cc40ac
1 changed files
with
8 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
install-docker.sh
+ 8
- 0
install-docker.sh
View File
@@ -0,0 +1,8 @@
#/bin/bash
#Install Docker
apt install ca-certificates curl gnupg lsb-release -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt update
apt install docker-ce docker-ce-cli containerd.io -y
Write
Preview
Loading…
Cancel
Save