DEV Community

Cover image for How to Install Docker on Raspberry Pi
0xkoji
0xkoji

Posted on

How to Install Docker on Raspberry Pi

Photo by Praveen Thirumurugan on Unsplash

original post: https://baxin.netlify.app/how-to-install-docker-raspberry-pi/

Install Docker on Raspberry Pi

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
Enter fullscreen mode Exit fullscreen mode

Add user to the docker group

sudo gpasswd -a $USER docker   # Add user to the docker group
newgrp docker                 # Refresh the group membership
Enter fullscreen mode Exit fullscreen mode

Verify Docker Installation

This command checks that Docker has been successfully installed on your Raspberry Pi.

docker --version

Docker version 27.4.1, build b9d17ea
Enter fullscreen mode Exit fullscreen mode

Hello World

This command runs a test container to verify Docker is working properly.

docker container run --rm hello-world
Enter fullscreen mode Exit fullscreen mode

Image of AssemblyAI tool

Transforming Interviews into Publishable Stories with AssemblyAI

Insightview is a modern web application that streamlines the interview workflow for journalists. By leveraging AssemblyAI's LeMUR and Universal-2 technology, it transforms raw interview recordings into structured, actionable content, dramatically reducing the time from recording to publication.

Key Features:
🎥 Audio/video file upload with real-time preview
🗣️ Advanced transcription with speaker identification
⭐ Automatic highlight extraction of key moments
✍️ AI-powered article draft generation
📤 Export interview's subtitles in VTT format

Read full post

Top comments (0)

Heroku

This site is built on Heroku

Join the ranks of developers at Salesforce, Airbase, DEV, and more who deploy their mission critical applications on Heroku. Sign up today and launch your first app!

Get Started

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay