6 lines
356 B
Bash
Executable File
6 lines
356 B
Bash
Executable File
#!/bin/bash
|
|
sudo apt update && install build-essential 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 && install docker-ce docker-compose -y
|