Skip to content

Instantly share code, notes, and snippets.

View bajpangosh's full-sized avatar
🛰️
Working from Moon

Bajpan Gosh bajpangosh

🛰️
Working from Moon
View GitHub Profile
@bajpangosh
bajpangosh / .sh
Created November 19, 2022 10:51
Setting Up Docker on Ubuntu 20.04 Focal (Arm64) Oracle Free
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
clear
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
lscpu
sudo add-apt-repository "deb [arch=arm64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
clear
apt-cache policy docker-ce
sudo apt-get -y install docker-ce
@bajpangosh
bajpangosh / CapRover.sh
Created May 3, 2024 18:10
CapRover Installation Script for Ubuntu 20.04, This gist contains a bash script for installing CapRover on Ubuntu 20.04. The script includes steps for Docker installation, domain verification, and CapRover setup. Each step is echoed for user readability. Please ensure to read and agree to the terms and conditions before running the script. Enjoy…
#!/bin/bash
# Update system packages
echo "Updating system packages..."
sudo apt update
# Install curl if not installed
echo "Installing curl..."
sudo apt install curl