
docker
文章平均质量分 71
github_37320188
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
docker:搭建私有仓库
系统环境 系统环境:centos 7 docker版本:1.13.1 实际操作 安装docker 后,可以通过官方的 registry 镜像创建本地私有仓库 下面是一个测试: docker run -d -p 5000:5000 registry 这里将自动下载 并 启动 registry 容器,创建本地的 私有仓库 默认情况下,会将仓库创建在容器的 /tmp/registry 目录下。可以通过...原创 2019-07-02 21:52:19 · 159 阅读 · 0 评论 -
docker:配置docker pull 源
修改/etc/docker/daemon.json 文件 { “registry-mirrors”:[ “https://kfwkfulq.mirror.aliyuncs.com”, “https://2lqq34jg.mirror.aliyuncs.com”, “https://pee6w651.mirror.aliyuncs.com”, “http://hub-mirror.c.163.com...原创 2019-07-11 11:00:24 · 2082 阅读 · 0 评论 -
Deep Learning:MXNet 基于docker 容器的分布式训练实践
引言 MXNet supports distributed training enabling us to leverage multiple machines for faster training. MXNet支持分布式培训,使我们能够利用多台机器进行更快速的培训。这段话来自于 MXNet官网 ,说明了MXNet 支持跨越设备运行。 How to Start Dis...原创 2019-08-20 18:35:29 · 1231 阅读 · 0 评论 -
Deep Learning:PyTorch 基于docker 容器的分布式训练实践
引言 PyTorch distributed currently only supports Linux. 这句话是来自 pytorch 官网 的 torch.distributed 部分,说明 pytorch 支持分布式训练,而且只在linux 上支持。 torch.distributed supports three backends, each with dif...原创 2019-09-05 16:24:17 · 5235 阅读 · 2 评论