Skip to content

Instantly share code, notes, and snippets.

@ezy
Forked from paneru-rajan/installation.md
Created April 19, 2020 20:52
Show Gist options
  • Select an option

  • Save ezy/c7f3911d0f6a65bbda5c9df568ebfd46 to your computer and use it in GitHub Desktop.

Select an option

Save ezy/c7f3911d0f6a65bbda5c9df568ebfd46 to your computer and use it in GitHub Desktop.
[Installing different packges in Ubuntu 18.04] Everything I Installed in Ubuntu 18.04 #ubuntu18.04 #ubuntu #installation #docker-compose #nodejs #npm #docker #elastic-search

List of Different application installation method

  1. Docker

    sudo apt install docker.io -y
    sudo usermod -aG docker your-user
    
  2. Docker-Compose using pip

    sudo pip install docker-compose 
    
  3. Elastic Search

    docker pull docker.elastic.co/elasticsearch/elasticsearch:6.2.4
    
    
  4. Java

    sudo apt install default-jdk -y
    
  5. NodeJs

    curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
    sudo apt-get install -y nodejs
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment