标签:style blog http color os 使用 strong 文件 div
官方已经提供了很多版本的 Linux 镜像,直接从官方仓库(Public Repositories)下载就可以了。如果考虑到安全性和速度,我们可能会想在自己局域网里架设一个私有仓库(Private Repositories)来放我们自己的镜像,Docker-Registry 正是我们需要的工具。
git clone git clone https://github.com/docker/docker-registry.git cd docker-registry/config cp config_sample.yml config.yml
在Debian中使用apt-get安装软件包时经常会提示让你插入netinst的光盘:
Media change: please insert the disc labeled
当没有时就无法进行安装了, 这时可以打开文件/etc/apt/sources.list文件,注释掉cdrom那一行,
然后再执行apt-get update更新下deb仓库,
这样以后再使用apt-get安装时就不会再搜寻cdrom了
安装一些必要软件包和一些 Docker-Registry 需要用到的 Python 工具和库:
apt-get install build-essential python-dev libevent-dev python-pip libssl-dev
标签:style blog http color os 使用 strong 文件 div
原文地址:http://www.cnblogs.com/saintaxl/p/3982061.html