Provide linux kernel dependencies.

This commit is contained in:
Will Sargent 2014-10-23 10:59:02 -07:00
parent dc7123ab57
commit 1161050fb7

View file

@ -38,7 +38,13 @@ You may also like to try the following tools (and add more details here after yo
## Prerequisites
This is all MacOS specific.
I use [Oh My Zsh](https://github.com/robbyrussell/oh-my-zsh) with the [Docker plugin](https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins#docker) for autocompletion of docker commands. YMMV.
### Linux
You should have at least a 3.8 kernel, but 3.10.x is [recommended](http://docs.docker.com/installation/binaries/#check-kernel-dependencies).
### MacOS
Use [Homebrew](http://brew.sh/).
@ -55,11 +61,6 @@ Quick and easy install script provided by Docker:
```
curl -sSL https://get.docker.com/ | sh
```
or
```
wget -qO- https://get.docker.com/ | sh
```
### Mac OS X
@ -86,8 +87,6 @@ docker run -i -t ubuntu /bin/bash
That's it, you have a running Docker container.
I use [Oh My Zsh](https://github.com/robbyrussell/oh-my-zsh) with the [Docker plugin](https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins#docker) for autocompletion of docker commands. YMMV.
## Containers
[Your basic isolated Docker process](http://etherealmind.com/basics-docker-containers-hypervisors-coreos/). Containers are to Virtual Machines as threads are to processes. Or you can think of them as chroots on steroids.