The images are started with the default size for /dev/shm which is 64 MB. Some common workloads (such as Playwright spinning up a headless Chromium) needs larger /dev/shm. This can be controlled e.g. by adding "--shm-size=1g" to the args in launchTargetContainer. This should probably be configurable?
My workaround has been to apply the larger /dev/shm size unconditionally, since it's tmpfs backed and won't use more space than it needs anyway.
The images are started with the default size for /dev/shm which is 64 MB. Some common workloads (such as Playwright spinning up a headless Chromium) needs larger /dev/shm. This can be controlled e.g. by adding
"--shm-size=1g"to theargsinlaunchTargetContainer. This should probably be configurable?My workaround has been to apply the larger /dev/shm size unconditionally, since it's tmpfs backed and won't use more space than it needs anyway.