Running Docker on Raspberry Pi 4
This tutorial demonstrates how to run Docker on a virtual Raspberry Pi 4 instance.
-
Log in to AVH.
-
Select your Raspberry Pi Device. If you haven't got one you can use the Quickstart for Raspberry Pi 4 to create a Raspberry Pi Device.
-
Select Console tab.
-
Log in with the user:
pi
and password:raspberry
If it is not prompting you for the user, press your
Return
key. -
Update the apt-get package list.
sudo apt-get update
-
Now install docker using apt-get.
sudo apt-get install docker.io
-
Try Docker.
sudo docker run -it ubuntu:latest echo "hello from ubuntu"