Skip to content

Instantly share code, notes, and snippets.

View AdithyaGiridharan's full-sized avatar

AdithyaGiridharan

View GitHub Profile
@tkanhe
tkanhe / install_docker.sh
Last active February 18, 2025 06:18
Install Docker on Ubuntu
#!/bin/bash
# Ref. https://docs.docker.com/engine/install/ubuntu/
# Remove existing Docker packages
for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove -y $pkg; done
# Add Docker's official GPG key
sudo apt-get update
sudo apt-get install -y ca-certificates curl