如何按时推送单个泊坞窗图像层?

时间:2017-07-06 02:36:40

标签: docker

我只想指出:我的互联网连接很糟糕。所以我开始推新形象,场景是这样的:

b57ecdb750f2: Pushing [====>                                              ]  43.57MB/473.9MB
9b7e4da6c261: Pushing [==================================================>]  18.94kB
21d523b40367: Pushed 
e18c77c6a7b1: Pushing [==================>                                ]  106.9MB/285.9MB
5ee5be8f332e: Pushed 
78a99e283d45: Retrying in 1 second 
98b9d6eacb01: Pushing [=========================================>         ]  95.06MB/114MB
96e14acce2fd: Retrying in 1 second 
787c930753b4: Pushing [==================================================>]  318.3MB/318.3MB
9f17712cba0b: Pushing [=======================>                           ]   56.9MB/122.6MB
223c0d04a137: Pushing [==================================================>]  45.18MB
fe4c16cbf7a4: Preparing 

同时推送所有这些图层只是简单地杀死我的互联网连接,不允许我导航和定位器抵制自己,因为许多图层上传有错误并一次又一次地重新启动。
有没有办法在时间上传单个图层? (顺便说一句,不,改变我的ISP或我糟糕的路由器不是一个选项)

3 个答案:

答案 0 :(得分:13)

在我的Ubuntu中,我添加了/etc/docker/daemon.json

{
  "max-concurrent-uploads": 1
}

然后sudo service docker restart。工作就像一个魅力。

答案 1 :(得分:5)

您可以使用守护程序标志指定并发层上载的限制。请参阅documentation here

运行守护程序时需要设置--max-concurrent-uploads

答案 2 :(得分:2)

在撰写本文时(在macOS上),如果您正在运行docker daemon,请打开Preferences-> Daemon-> Advanced并包含类似json的配置: ... "max-concurrent-uploads": 1 确保您的json语法正确,然后单击Apply&Restart

然后后续的docker push将仅尝试一次推送一层

enter image description here