Docker容器默认没有内存限制
摘要: 默认情况下,Docker容器可以使用主机的所有内存。
启动Docker容器时,若没有设置memory和memory-swap选项,则该容器可以使用主机的所有内存,没有限制。
docker run -it ubuntu:14.04 /bin/bash |
We set nothing about memory, this means the processes in the container can use as much memory and swap memory as they need.
参考
关于Fundebug
Fundebug专注于JavaScript、微信小程序、微信小游戏、支付宝小程序、React Native、Node.js和Java线上应用实时BUG监控。 自从2016年双十一正式上线,Fundebug累计处理了30亿+错误事件,付费客户有阳光保险、达令家、核桃编程、荔枝FM、微脉等众多品牌企业。欢迎大家免费试用!
版权声明: 转载时请注明作者KiwenLau以及本文地址: https://kiwenlau.com/note/2018/07/07/docker-memory/