I don't know if this is related with this topic: viewtopic.php?t=5437
I have a F-424 Pro with TOS 6 (6.0.577-00166). I have been installed the Portainer application (from offical TOS applications, now in version 2.19.1-ce), works fine, but when I try to access into a container console (via Exec console from Portainer UI) show the error:
Code: Select all
Unable to retrieve image detailsSeems that is a issue related with new directives introduced in newer Docker versions and old versions of Portainer.
From 2.20.3 Portainer version or upper, the problem has been solved.
To verify that the the Portainer version upgrade works fine. I created a new Docker project with this docker-compose configuration (I have previously disabled the Portainer TOS application):
Code: Select all
version: '3.8'
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: always
ports:
- "8000:8000"
- "9443:9443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/dataCould be possible upgrade the TOS Portainer app version to 2.20.3 or newer?
Thank you!




