Install Docker on Raspberry Pi OS 64 bit

Hello Friends,
I’m fairly new to Raspberry Pi and completely new to Docker.
I’m not a software developer, which means I’m, unfortunately, unfamiliar with many relevant aspects of linux some of you are already aware of. I’m hoping a few of you could help me with a question.
I’m using a Raspberry Pi 4 4GB running with Raspberry Pi OS 64 bit.
I would like to install Docker on this system, but I could not find a document explaining if I need to use a special curl command for 64bit Raspberry Pi OS.
Is the curl command different between 32bit and 64bit OS?

This is the curl command I’m aware of to install docker on Raspberry Pi:

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

Hope someone can help :pray:

1 Like

here we go:

  1. Install Docker
    curl -sSL https://get.docker.com | sh
  • dockerd-rootless-setuptool.sh install *
    *To add the permissions to the current user run:
    sudo usermod -aG docker ${USER} && logout
    *controle
    docker version
    *Enable the Docker system service to start your containers on boot
    sudo systemctl enable docker
    *Install compose
    sudo apt-get install libffi-dev libssl-dev
    sudo apt install python3-dev
    sudo apt-get install -y python3 python3-pip
    sudo pip3 install docker-compose