Skip to content

Instantly share code, notes, and snippets.

@Muzammil-Bilwani
Last active July 9, 2018 16:44
Show Gist options
  • Save Muzammil-Bilwani/ee52d2eeb37a9c5c83213f358c6935e9 to your computer and use it in GitHub Desktop.
Save Muzammil-Bilwani/ee52d2eeb37a9c5c83213f358c6935e9 to your computer and use it in GitHub Desktop.
Setup commands for Ubuntu

Installation For Ubuntu

Node JS

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs 

Git

sudo apt install git-all

Docker

sudo apt-get update
sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-get install docker-ce

Link

MYSQL

sudo apt-get install mysql-server

NGINX

sudo apt-get install nginx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment