How to Install Portainer on Raspberry Pi 5
(F.A.Q)
How do I update Portainer?
To update Portainer, remove the existing container and pull the latest image:
docker stop portainer
docker rm portainer
docker pull portainer/portainer-ce:latest
docker run -d -p 8000:8000 -p 9443:9443 \
--name=portainer --restart=always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v portainer_data:/data \
portainer/portainer-ce:latest
What if I can’t access the web UI?
Ensure that Portainer is running by checking:
docker ps
If it’s not running, restart it:
docker restart portainer
How do I uninstall Portainer?
Run the following commands to remove Portainer:
docker stop portainer
docker rm portainer
docker volume rm portainer_data
Can I use Portainer with Kubernetes on Raspberry Pi?
Yes! Portainer supports Kubernetes, but additional configurations are required to manage Kubernetes clusters.

