前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >专栏 >关于docker占用内存太多的问题

关于docker占用内存太多的问题

作者头像
爱喝水的木子
发布2022-09-28 19:07:09
发布2022-09-28 19:07:09
3.6K00
代码可运行
举报
文章被收录于专栏:爱喝水的木子爱喝水的木子
运行总次数:0
代码可运行

问题及解决方法

开发中使用docker然后内存占用贼大,直接导致电脑卡死,找到了一个方法可以将内存降下来一点,以后还是要加内存的

方法

  1. 打开这个文件夹新建一个文件.wslconfig,这个文件是不存在的,需要新建
  1. 在文件中添加配置信息
代码语言:javascript
代码运行次数:0
运行
复制
# Settings apply across all Linux distros running on WSL 2
[wsl2]
 
# Limits VM memory to use no more than 4 GB, this can be set as whole numbers using GB or MB
memory=2GB 
 
# Sets the VM to use two virtual processors
processors=2
 
# Specify a custom Linux kernel to use with your installed distros. The default kernel used can be found at https://github.com/microsoft/WSL2-Linux-Kernel
# kernel=C:\\temp\\myCustomKernel
 
# Sets additional kernel parameters, in this case enabling older Linux base images such as Centos 6
# kernelCommandLine = vsyscall=emulate
 
# Sets amount of swap storage space to 8GB, default is 25% of available RAM
swap=4GB
 
# Sets swapfile path location, default is %USERPROFILE%\AppData\Local\Temp\swap.vhdx
# swapfile=C:\\temp\\wsl-swap.vhdx
 
# Disable page reporting so WSL retains all allocated memory claimed from Windows and releases none back when free
# pageReporting=false
 
# Turn off default connection to bind WSL 2 localhost to Windows localhost
localhostforwarding=true
 
# Disables nested virtualization
# nestedVirtualization=false
 
# Turns on output console showing contents of dmesg when opening a WSL 2 distro for debugging
# debugConsole=true
  1. 管理员的方式打开终端
  1. 输入命令
代码语言:javascript
代码运行次数:0
运行
复制
wsl --shutdown
  1. 重启docker即可

参考

https://docs.microsoft.com/en-us/windows/wsl/wsl-config#configure-global-options-with-wslconfig

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022-09-07,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 问题及解决方法
    • 开发中使用docker然后内存占用贼大,直接导致电脑卡死,找到了一个方法可以将内存降下来一点,以后还是要加内存的
    • 方法
    • 参考
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档