Skip to content
View kbhyan's full-sized avatar

Block or report kbhyan

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. How to install NodeJS on Ubuntu 18.0... How to install NodeJS on Ubuntu 18.04 and 20.04 using NVM
    1
    # 1- install curl
    2
    sudo apt update && sudo apt install curl -y
    3
    
                  
    4
    # 2- download the installation script, it will do the installation automatically
    5
    # replace v0.37.2 with the latest version
  2. How to install Docker and Docker Com... How to install Docker and Docker Compose on Ubuntu 18.04 and 20.04
    1
    # --------------Installing docker
    2
    # 1- update packages list and install dependencies
    3
    sudo apt update && sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
    4
    
                  
    5
    # 2- add GPG keys for docker repo
  3. docker-with-rails docker-with-rails Public

    This project demonstrates how to Dockerize an existing Rails application with PostgreSQL and Redis using Docker Compose.

    HTML