When I run a docker image with ipc=host and call shmget to allocate a shared memory in container, I can run ipcs -m to display this shared memory information on the host.
If I use the default ipc mode to run the docker image, I can run ipcs -m to display shared memory in docker, but I can not use the same method to display it on the host.
Is there any way to display all shared memory information allocated by docker container on the host,even if the ipc mode is not host?
