Created
June 29, 2025 12:57
-
-
Save sitedata/6405699461de3295453c3e89a158fc88 to your computer and use it in GitHub Desktop.
Bash Script to install Docker and Docker Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Installs Docker on Ubuntu Linux | |
echo "Installing Docker..." | |
set -e | |
# Install distribution packages. | |
sudo apt-get update | |
sudo apt-get -qq install ca-certificates curl gnupg lsb-release | |
# Install key. | |
sudo mkdir -p /etc/apt/keyrings | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg | |
sudo chmod a+r /etc/apt/keyrings/docker.gpg | |
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ | |
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | |
# Install Docker with Compose Plugin. | |
sudo apt-get update | |
sudo apt-get -qq install docker-ce docker-ce-cli containerd.io docker-compose-plugin cgroupfs-mount | |
# Verify installation works. | |
sudo docker run hello-world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment