Scripts, cache extract

This commit is contained in:
Marwolf
2018-07-11 09:04:02 -04:00
parent 9ab165790c
commit e4031bcb97
5 changed files with 17 additions and 2 deletions

7
install-docker-linux.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
sudo apt update
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 bionic stable"
sudo apt update
sudo apt install docker-ce build-essential docker-compose -y