Files
Open-RSC-Docker-Home/install-docker-linux.sh
2018-07-11 09:04:02 -04:00

8 lines
368 B
Bash
Executable File

#!/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