• 0 Posts
  • 16 Comments
Joined 4 months ago
cake
Cake day: February 28th, 2026

help-circle

  • thenoirwolfess@fedinsfw.apptome_irl@lemmy.worldme_irl
    link
    fedilink
    English
    arrow-up
    0
    ·
    3 days ago

    I never have Docker Desktop on my machines, only Compose, but looking at the documentation they have definitely made it confusing. I know the terminal isn’t for everyone, but it’s straightforward. For easy install (and no AI or GUI) open a terminal and remove existing conflicts:
    Debian/Ubuntu specific

    for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done
    

    RHEL/CentOS/Fedora/Rocky specific

    sudo dnf remove -y docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-engine podman runc
    

    Install

    curl -fsSL https://get.docker.com/ | sh