Installing Docker and Portainer on a Raspberry Pi

Docker is a popular containerization platform that allows developers to deploy, manage, and run applications in containers. Running Docker on a Raspberry Pi can be a great way to experiment with containerization and create a portable development environment. In this blog post, we will walk through the steps to install Docker and Portainer on a Raspberry Pi.

Prerequisites

Before you start, you will need the following:

  • A Raspberry Pi running Raspberry Pi OS (Raspbian) with a working internet connection
  • SSH access to the Raspberry Pi
  • Basic knowledge of the Linux command line

Step 1: Update and Upgrade the Raspberry Pi

Before we install Docker and Portainer, we need to update and upgrade the Raspberry Pi to ensure that we have the latest software packages. To do this, open the terminal on the Raspberry Pi or connect to it using SSH and run the following commands:

sudo apt update
sudo apt upgrade

Step 2: Install Docker

Next, we need to install Docker on the Raspberry Pi. To do this, we will use the convenience script provided by Docker. Run the following command in the terminal to download and run the script:

curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh

This script will download and install the latest version of Docker on your Raspberry Pi.

Once Docker is installed, you can verify the installation by running the following command:

sudo docker version

This will display the version of Docker installed on your Raspberry Pi.

Step 3: Add User to the Docker Group

By default, the Docker daemon runs as the root user, which means that any Docker container has full access to the host system. To avoid security issues, we will add the current user to the Docker group so that we can run Docker commands without using sudo.

Run the following command to add the current user to the Docker group:

sudo usermod -aG docker $(whoami)

Note that you will need to log out and log back in for the changes to take effect.

Step 4: Install Portainer

Portainer is a lightweight management UI that allows you to easily manage Docker containers, images, networks, and volumes. To install Portainer, we will create a Docker volume and then start a Portainer container.

First, create the Docker volume using the following command:

sudo docker volume create portainer_data

Next, start the Portainer container using the following command:

sudo docker run -d -p 8000:8000 -p 9000:9000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce

This command will start a new Portainer container with the name “portainer” and expose ports 8000 and 9000. The container will automatically restart if it stops, and it will use two Docker volumes: one for the Docker socket and one for Portainer data.

Step 5: Access Portainer

Once the Portainer container is running, you can access the Portainer UI by opening a web browser and navigating to the IP address of your Raspberry Pi on port 9000. For example, if your Raspberry Pi’s IP address is 192.168.1.100, you would navigate to http://192.168.1.100:9000.

You will be prompted to create an admin user for Portainer. After you create the admin user, you can start using Portainer to manage your Docker containers.

Conclusion

In this blog post, we walked through the steps to install Docker and Portainer on a Raspberry Pi.

Leave a Reply

Your email address will not be published. Required fields are marked *

WordPress Appliance - Powered by TurnKey Linux