Docker:TLS handshake timeout错误及限制内存方法
1.docker pull image 如果报错:"net/http: TLS handshake timeout"https://blog.csdn.net/qq_33575129/article/details/78196279docker pull image 如果报错:"net/http: TLS handshake timeout"解决办法:新增/etc/dock
·
1.docker pull image 如果报错:"net/http: TLS handshake timeout"
https://blog.csdn.net/qq_33575129/article/details/78196279
docker pull image 如果报错:"net/http: TLS handshake timeout"
解决办法:
新增/etc/docker/daemon.json 文件并添加上 registry-mirrors 键值。
{
"registry-mirrors": ["https://registry.docker-cn.com"]
}
修改保存后重启 Docker 以使配置生效。
2.限制容器内存
https://blog.csdn.net/l6807718/article/details/51692827
$ sudo docker run -it --name test -m 100m --memory-swap=100m ubuntu /bin/bash
此时内存与swap都被限制为100m
https://blog.csdn.net/candcplusplus/article/details/53728507
你可能在进行内存限制的实验时发现docker run命令报错:WARNING: Your kernel does not support swap limit capabilities, memory limite
d without swap.
这是因为宿主机内核的相关功能没有打开。按照下面的设置就行。
step 1:编辑/etc/default/grub文件,将GRUB_CMDLINE_LINUX一行改为GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1"
step 2:更新 GRUB,即执行$ sudo update-grub
step 3: 重启系统。
https://blog.csdn.net/qq_33575129/article/details/78196279
docker pull image 如果报错:"net/http: TLS handshake timeout"
解决办法:
新增/etc/docker/daemon.json 文件并添加上 registry-mirrors 键值。
{
"registry-mirrors": ["https://registry.docker-cn.com"]
}
修改保存后重启 Docker 以使配置生效。
2.限制容器内存
https://blog.csdn.net/l6807718/article/details/51692827
$ sudo docker run -it --name test -m 100m --memory-swap=100m ubuntu /bin/bash
此时内存与swap都被限制为100m
https://blog.csdn.net/candcplusplus/article/details/53728507
你可能在进行内存限制的实验时发现docker run命令报错:WARNING: Your kernel does not support swap limit capabilities, memory limite
d without swap.
这是因为宿主机内核的相关功能没有打开。按照下面的设置就行。
step 1:编辑/etc/default/grub文件,将GRUB_CMDLINE_LINUX一行改为GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1"
step 2:更新 GRUB,即执行$ sudo update-grub
step 3: 重启系统。
更多推荐
已为社区贡献3条内容
所有评论(0)