Installing Docker on Raspberry Pi

Below is a quick recipe to install Docker on your Raspberry Pi.

Update your Raspbian.


  sudo apt-get update
  sudo apt-get upgrade
        

Install Docker.


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

Make sure your user can use Docker. Note replace <user-id> with your own user id.


  sudo usermod -aG docker <user-id>
        

Reboot (just for good measure).


  sudo /sbin/reboot
        

Let me know what you think! Send your comments to blog (at) manorrock (dot) com.

Posted October 31st, 2019

Up