Skip to content

Commit

Permalink
added docker to dev installation
Browse files Browse the repository at this point in the history
  • Loading branch information
shitwolfymakes committed Mar 27, 2022
1 parent e98ee5b commit d638913
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/installers/ubuntu-20.04-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ function install_dev_requirements() {
sudo apt install lsdvd -y
sudo dpkg-reconfigure libdvd-pkg
sudo apt install default-jre-headless -y

# install docker
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
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" -y
apt-cache policy docker-ce
sudo apt install docker-ce -y
}

function remove_existing_arm() {
Expand Down

0 comments on commit d638913

Please sign in to comment.