Is there a way to inspect a running Docker container? E.g., inspect the filesystem using a shell, etc?
To inspect an image, we could using docker run <tag> /bin/bash
but I am looking to inspect a running container, not an image.
note that docker container inspect
is not what I am looking for - that command just gives me metadata about the container.