Portainer (docker web interface)

Portainer is a lightweight management UI which allows you to easily manage your different Docker environments
(Docker hosts or Swarm clusters). Portainer is meant to be as simple to deploy as it is to use. It consists of a single container
that can run on any Docker engine (can be deployed as Linux container or a Windows native container, supports other platforms too). Portainer allows you to manage your all your Docker resources (containers, images, volumes, networks and more) !
It is compatible with the standalone Docker engine and with Docker Swarm mode.

I am trying it for the moment on my SBC, all looks good for the moment.

would be a nice and easy usecase for docker.

https://github.com/MichaIng/DietPi/issues/2848

https://github.com/portainer/portainer

you can run portainer as a container, in my eyes it’s the best solution, it’s a self running container, no further configuration needed

$ docker volume create portainer_data
$ docker run -d --restart always -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer

one thing what I thought about it, it will be nice to integrate portainer (as a container) with docker installation. So if someone doesn’t want portainer, he can easy delete it after installation