Skip to content

Commit

Permalink
added install-docker-ce.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
VectorCell committed Jun 4, 2021
1 parent e6dfd44 commit be6a34b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions install-docker-ce.sh
@@ -0,0 +1,12 @@
#!/bin/bash

sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"

sudo apt update
sudo apt install docker-ce
sudo systemctl status docker.service

sudo usermod -aG docker ${USER}

0 comments on commit be6a34b

Please sign in to comment.