0%

Docker 部署深度学习模型

Docker 安装

参考链接:https://docs.docker.com/install/linux/docker-ce/centos/
运行到 sudo docker run hello-world 正常输出即可

Docker 国内加速

操作步骤

  • 编辑文件 /etc/docker/daemon.json,没有就新建。加入以下项目:
    1
    2
    3
    {
    "registry-mirrors": ["https://registry.docker-cn.com","http://hub-mirror.c.163.com"]
    }
  • 重启 docker daemon : systemctl restart docker

也可以写一个脚本

1
2
3
4
5
6
7
#!/bin/bash
cat>/etc/docker/daemon.json<
{
"registry-mirrors": ["https://registry.docker-cn.com","http://hub-mirror.c.163.com"]
}
EOF
systemctl restart docker

拉取 tensorflow serving

支持一根棒棒糖!