Created
December 5, 2025 19:59
-
-
Save kunteinzo/a98a56a4762b560b5208178a8346ab2a to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| # Uninstalled the Distro default version | |
| apt remove $(dpkg --get-selections docker.io docker-compose docker-compose-v2 docker-doc podman-docker containerd runc | cut -f1) 2&> /dev/null | |
| if [ $(echo $?) != 0 ];then | |
| echo "Run the script as root user or with sudo." | |
| exit 1 | |
| fi | |
| # Add Docker's official GPG key: | |
| apt update | |
| apt 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: | |
| sudo tee /etc/apt/sources.list.d/docker.sources <<EOF | |
| Types: deb | |
| URIs: https://download.docker.com/linux/ubuntu | |
| Suites: $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") | |
| Components: stable | |
| Signed-By: /etc/apt/keyrings/docker.asc | |
| EOF | |
| apt update | |
| # Install the latest version from Offical Docker apt repository | |
| apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin | |
| echo "Done ✅" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment