Skip to content

Instantly share code, notes, and snippets.

View shivanshtalwar0's full-sized avatar

Shivansh Talwar shivanshtalwar0

View GitHub Profile
@shivanshtalwar0
shivanshtalwar0 / nodejs-cicd-github-actions.md
Created September 7, 2023 23:42 — forked from danielwetan/nodejs-cicd-github-actions.md
Deploy Node.js to VPS using Github Actions

Deploy Node.js to VPS using Github Actions

Steps to deploy Node.js to VPS using PM2 and Github Actions

1. Clone repo to VPS folder

@shivanshtalwar0
shivanshtalwar0 / install-docker-mint20.sh
Created June 8, 2021 22:09 — forked from dnavarrom/install-docker-mint20.sh
Install docker and docker compose en linux mint 20
#docker setup
echo "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" | sudo tee /etc/apt/sources.list.d/docker.list
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io pigz
#execution permission
sudo usermod -aG docker $USER
#docker compose