Problem visualizing Docker system page

Good evening,

I just noticed that I see containers on the Gladys system page:

Whereas I only have this:

image

I think there’s a small problem :sweat_smile:

run the command docker ps -a otherwise you only see the containers that are up.

With the -a you see everything: the active containers, but also those that are stopped (status Exited), paused, or that have crashed

You wouldn’t have been testing installing containers without giving them a name, would you?

Ah yes, thanks, I hadn’t thought of that:

I’ll delete them :slight_smile:

After running a purge with this command

docker system prune -a --volumes

Everything is OK :slight_smile:

Thanks @Will_71

3 Likes