Browse Source

docker

master
Coesens Bert 2 years ago
parent
commit
7710cc40ac
1 changed files with 8 additions and 0 deletions
  1. +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

Loading…
Cancel
Save