1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Cleaned up install instructions in the README

* Addded quick install on ubuntu as the 1st install option
	* Grouped other binary installs under "binary installs"
	* Removed duplicate binary ubuntu installs (linked to the docs)
	* Improved "build from source" instructions
This commit is contained in:
Solomon Hykes 2013-04-20 17:26:50 -07:00
parent 911925b54a
commit c40f01319f

View file

@ -53,28 +53,47 @@ Under the hood, Docker is built on the following components:
Install instructions Install instructions
================== ==================
Building from source Quick install on Ubuntu 12.04 and 12.10
-------------------- ---------------------------------------
1. Make sure you have a [Go language](http://golang.org) compiler.
On a Debian/wheezy or Ubuntu 12.10 install the package:
```bash ```bash
curl get.docker.io | sh -x
$ sudo apt-get install golang-go
``` ```
2. Execute ``make`` Binary installs
----------------
This command will install all necessary dependencies and build the Docker supports the following binary installation methods.
executable that you can find in ``bin/docker`` Note that some methods are community contributions and not yet officially supported.
3. Should you like to see what's happening, run ``make`` with ``VERBOSE=1`` parameter: * [Ubuntu 12.04 and 12.10 (officially supported)](http://docs.docker.io/en/latest/installation/ubuntulinux/)
* [Arch Linux](http://docs.docker.io/en/latest/installation/archlinux/)
* [MacOS X (with Vagrant)](http://docs.docker.io/en/latest/installation/macos/)
* [Windows (with Vagrant)](http://docs.docker.io/en/latest/installation/windows/)
* [Amazon EC2 (with Vagrant)](http://docs.docker.io/en/latest/installation/amazon/)
Installing from source
----------------------
1. Make sure you have a [Go language](http://golang.org/doc/install) compiler and [git](http://git-scm.com) installed.
2. Checkout the source code
```bash ```bash
git clone http://github.com/dotcloud/docker
```
$ make VERBOSE=1 3. Build the docker binary
```bash
cd docker
make VERBOSE=1
```
4. Execute the docker daemon
```bash
sudo ./bin/docker -d
``` ```
Installing on Ubuntu 12.04 and 12.10 Installing on Ubuntu 12.04 and 12.10