Post

📦 Installing Armbian OS and Docker on Orange Pi Zero 3

📦 Installing Armbian OS and Docker on Orange Pi Zero 3

In small-scale and hobbyist environments, SBCs like the Orange Pi Zero 3 are great for lightweight servers and projects. This guide shows how to install Armbian OS and Docker Engine on your Orange Pi Zero 3 quickly and efficiently.


📦 What You’ll Need


🔄 1. Installing Armbian OS

🎠 Preparation

  1. Format SD Card using SD Card Formatter (for used SD Card).

    Format SD Card Format SD Card

  2. Flash Armbian Image using Balena Etcher. Format SD Card Format SD Card Format SD Card Format SD Card Format SD Card
  3. Insert SD Card and Power On the Orange Pi.
  4. Find Local IP Address using your router.
  5. SSH Access:

    1
    
     ssh root@<orange-pi-ip>
    
  6. First Boot Setup:

    • Change the root password
    • Create new user if prompted
    • Follow the rest instruction SSH SSH
  7. Update Packages:

    1
    
     sudo apt update
    

    Update

  8. (Optional) Set Static IP following this guide
    • Edit network config files on /etc/netplan/armbian.yaml
    • Delete or move default DHCP config
    • Apply the new config
    • Reconnect to device using new static IP Static IP Static IP

💡 2. Installing Docker Engine

  1. Launch Configuration Tool:

    1
    
     sudo armbian-config
    
  2. Navigate: Software > Containers > Docker Engine Docker Docker Docker Docker Docker

  3. Verify Installation:

    1
    2
    
     docker --version
     docker compose version
    

    Example Output:

    1
    2
    
     Docker version 25.0.3, build 123456
     Docker Compose Version v2.25.3
    

    Docker

  4. Test Docker:

    1
    
     sudo docker run hello-world
    

    Docker

  5. Add User to Docker Group:

    1
    2
    3
    
     sudo groupadd docker
     sudo usermod -aG docker $USER
     newgrp docker
    

    Docker


🏋️ Summary

You’ve successfully set up your Orange Pi Zero 3 with Armbian OS and Docker Engine, making it ready for containerized applications.


📣 What’s Next?

Stay tuned for upcoming tutorials on managing services, deploying applications, and exploring advanced configurations on your Orange Pi Zero 3 with Armbian OS.

For more guides and updates, be sure to check back soon!


📚 References

This post is licensed under CC BY 4.0 by the author.