{% comment %} The honest "Docker cannot be used here" panel. Rendered instead of an empty table whenever the probe in containerization.views.docker_probe says the binary is missing or the daemon cannot be reached. It says which of the two it is, because the fixes are different: install Docker, or give the root helper a 'docker' verb / start dockerd. {% endcomment %} {% if dockerAvailable != 1 %}
The container manager needs the Docker Engine. Install it as root on this server, then reload this page.
Run this over SSH:
{{ docker.installHint }}
{% else %}
{{ docker.message }}
The panel runs unprivileged and reaches Docker through the root helper. Check that dockerd is running (systemctl status docker) and that the helper exposes a docker verb — until it does, every action on this page will fail safely rather than half-run.
{% endif %}