新建一个脚本,内容如下:
#!/bin/bash
sudo apt-get install software-properties-common #增加 add-apt-repository 命令
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:dotcloud/lxc-docker #增加一个ppa源,如:ppa:user/ppa-name
sudo apt-get update #更新系统
sudo apt-get install lxc-docker
修改权限后运行
好吧上面都是扯淡的,因为运行后的结果是:
E: 无法定位软件包 lxc-docker
不信邪在终端输入docker 神奇的出现了这个
程序“docker”尚未安装。 您可以使用以下命令安装:
sudo apt-get install docker.io
然后华丽丽的输入
sudo apt-get install docker.io
切换到root账户,输入docker info 出现以下内容说明已经安装成功了
Containers: 0
Images: 2
Storage Driver: aufs
Root Dir: /var/lib/docker/aufs
Backing Filesystem: extfs
Dirs: 2
Dirperm1 Supported: true
Execution Driver: native-0.2
Kernel Version: 4.2.0-16-generic
Operating System: Ubuntu 15.10
CPUs: 2
Total Memory: 3.825 GiB
Name: shane-pc
ID: CYOK:BZCH:24KT:PPRH:FJFW:GKVQ:MKE5:LAHV:GRHY:P7JY:KOYU:BI4V
WARNING: No swap limit support
可以根据 http://dockone.io/article/102 里面的内容验证一下是否安装成功。
Docker私有仓库详细搭建步骤:http://www.linuxdiyf.com/linux/14662.html
阅读Docker源代码的神兵利器:http://www.linuxdiyf.com/linux/14512.html
ubuntu15.04下安装docker:http://www.linuxdiyf.com/linux/12989.html
Ubuntu 14.10/15.04安装docker:http://www.linuxdiyf.com/linux/11929.html
Linux系统入门学习:如何在Ubuntu中升级Docker:http://www.linuxdiyf.com/linux/12257.html