你可以使用 Arch Linux 社区发布的 Docker 软件包进行安装:
* [docker](https://www.archlinux.org/packages/community/x86_64/docker/)
或者使用 AUR 包
* [docker-git](https://aur.archlinux.org/packages/docker-git/)
`docker` 软件包将会安装最新版本的 Docker。`docker-git` 则是由当前master分支构建的包。
### 依赖关系
Docker 依赖于几个指定的安装包,核心的几个依赖包为:
* bridge-utils
* device-mapper
* iproute2
* lxc
* sqlite
### 安装
一般包的简单安装:
~~~
pacman -S docker
~~~
这就安装了你所需要的一切。
对于AUR包的执行:
~~~
yaourt -S docker-git
~~~
这里假设你已经安装好了 yaourt.如果你之前没有安装构建过这个包,请参考 [Arch User Repository](https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_packages) .
### 开启Docker
Docker 会创建一个系统服务,用下面命令来启动 Docker:
~~~
$ sudo systemctl start docker
~~~
设置开机启动:
~~~
$ sudo systemctl enable docker
~~~
## 自定义进程选项
如果你想要添加一个 HTTP 代理,为 Docker 运行文件设置不同的目录或分区,又或者定制一些其它的功能,请阅读我们的系统文章,了解[如何定制 Docker 进程](https://github.com/widuu/chinese_docker/blob/master/articles/systemd.md)
- 关于Docker
- 镜像简介
- 安装篇
- Mac OS X
- Ubuntu
- Red Hat Enterprise Linux
- CentOS
- Debain
- Gentoo
- Google Cloud Platform
- Rackspace Cloud
- Amazon EC2
- IBM Softlayer
- Arch Linux
- FrugalWare
- Fedora
- openSUSE
- CRUX Linux
- Microsoft Windows
- Binaries
- 用户指南
- 使用Docker Hub
- 在Docker中运行应用
- 使用容器
- 使用docker镜像
- 连接容器
- 管理容器数据
- 使用Docker Hub
- Docker Hub
- 账户
- 存储库
- 自动构建
- 官方案例
- Docker中运行MongoDB
- Docker中运行Redis服务
- Docker中运行PostgreSQL
- Docker中运行Riak服务
- Docker中运行SSH进程服务
- Docker中运行CouchDB服务
- Docker中运行Apt-Cacher-ng服务