So apparently seeing this was not enough:
I should have clicked the endpoint.
The problem is not the docker.sock. The problem is that portainer does not support the min API version v1.44 docker v29 requires.
If you configure the min API version to 1.24, portainer will work again:
- open Docker Desktop settings → Docker Engine
- add property
min-api-version": "1.24" - click “Apply & restart” to restart the Docker Engine
Now Portainer will work again.
The resulting daemon configuration could look something like this:
{
"builder": {
"gc": {
"defaultKeepStorage": "20GB",
"enabled": true
}
},
"experimental": true,
"min-api-version": "1.24"
}
