Skip to main content

Running Docker on Raspberry Pi 4

This tutorial demonstrates how to run Docker on a virtual Raspberry Pi 4 instance.

  1. Log in to AVH.

  2. 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.

  3. Select Console tab.

  4. Log in with the user: pi and password: raspberry

    Log in

    If it is not prompting you for the user, press your Return key.

  5. Update the apt-get package list.

    sudo apt-get update

    sudo apt-get update

  6. Now install docker using apt-get.

    sudo apt-get install docker.io

    sudo apt-get install docker.io

  7. Try Docker.

    sudo docker run -it ubuntu:latest echo "hello from ubuntu"

    Try Docker