Skip to content

Instantly share code, notes, and snippets.

@NantipatSoftEn
Last active September 22, 2020 07:40
Show Gist options
  • Save NantipatSoftEn/1956314d68fd31a9ff8c1410fd79f7d3 to your computer and use it in GitHub Desktop.
Save NantipatSoftEn/1956314d68fd31a9ff8c1410fd79f7d3 to your computer and use it in GitHub Desktop.
βš™οΈ install software require when create new server πŸ– sh install.sh
#!/bin/bash
sudo apt update
sudo apt install git
sudo apt install nodejs
sudo apt install npm
apt install zsh
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
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 bionic stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install docker-ce
sudo systemctl status docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment