Shared Memory with Docker containers (docker version 1.4.1)
问题 I have 1 process that writes to a specific section of shared memory (i.e. "/falcon" )in a docker container. Docker image: dockersharedmemory/shmclient I have another process that initially creates and reads the same section of shared memory(i.e. "/falcon" ) every second in another docker container. Docker image: dockersharedmemory/shmserver When I run the two containers using the following commands I am able to read and write in each container respectfully: docker run -d -v /dev:/dev