Skip to content

Instantly share code, notes, and snippets.

@hbasria
Last active September 6, 2024 04:56
Show Gist options
  • Save hbasria/b871d3cde6b1b3390737394bf4871acc to your computer and use it in GitHub Desktop.
Save hbasria/b871d3cde6b1b3390737394bf4871acc to your computer and use it in GitHub Desktop.
install docker-ce
apt-get update
apt-get install ca-certificates curl
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
chmod a+r /etc/apt/keyrings/docker.asc
# Add the repository to Apt sources:
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
@hbasria
Copy link
Author

hbasria commented Jul 3, 2024

Usage

sh -c "$(curl -fsSL https://gist.githubusercontent.com/hbasria/b871d3cde6b1b3390737394bf4871acc/raw/44ba1c0caa4e38fc50bf3e3d40f2eaed1abb26f5/install-docker.sh)"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment