![1.png](https://static.studygolang.com/180328/1f6d351052633a158721c6cead668356.png)
我用的是centos7.0版本
tar xzvf docker-*.tgz -C /usr/local/
ln -fs /usr/local/docker/* /usr/bin/
配置 docker 的 json 文件 /etc/docker/daemon.json
{
"live-restore": false,
"pidfile": "/data/docker/docker.pid",
"graph": "/data/docker/",
"debug": true,
"hosts": ["tcp://0.0.0.0:2375","unix:///var/run/docker.sock"]
}
启动: /usr/bin/dockerd
#2