Define size for /dev/shm on container engine

别等时光非礼了梦想. 提交于 2019-11-28 18:23:05

Mounting an emptyDir to /dev/shm and setting the medium to Memory did the trick!

spec:
  volumes:
  - name: dshm
    emptyDir:
      medium: Memory
  containers:
  - image: gcr.io/project/image
    volumeMounts:
      - mountPath: /dev/shm
        name: dshm
docker run --cap-add=SYS_ADMIN --shm-size 2G --name chrome chrome-hd

to run container locally where

--shm-size 2G

is used to tweak shm available size.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!