embeddedart / embeddedart.github.io

Embedded Art website https://www.embeddedart.in
0 stars 0 forks source link

install docker on raspberry pi #13

Open embeddedart opened 2 years ago

embeddedart commented 2 years ago

Update

sudo apt update

Upgrade

sudo apt upgrade

download and run the official Docker setup script by running the following command

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

So our next step is to add our pi user to the docker group by using the command below

sudo usermod -aG docker pi

Since we made some changes to our pi user, we will now need to log out and log back in for it to take effect

logout

Once you have logged back in, you can verify that the docker group has been successfully added to your user by running the following command

groups