Files
docker-docs/docs/install.md
Ben Firshman da80eca28c Update to docs to Docker 1.0.0
Signed-off-by: Ben Firshman <ben@firshman.co.uk>
2014-06-10 14:58:06 -07:00

1.1 KiB

layout, title
layout title
default Installing Fig

Installing Fig

First, install Docker version 1.0.0. If you're on OS X, you can use docker-osx:

$ curl https://raw.githubusercontent.com/noplay/docker-osx/1.0.0/docker-osx > /usr/local/bin/docker-osx
$ chmod +x /usr/local/bin/docker-osx
$ docker-osx shell

Docker has guides for Ubuntu and other platforms in their documentation.

Next, install Fig. On OS X:

$ curl -L https://github.com/orchardup/fig/releases/download/0.4.1/darwin > /usr/local/bin/fig
$ chmod +x /usr/local/bin/fig

On 64-bit Linux:

$ curl -L https://github.com/orchardup/fig/releases/download/0.4.1/linux > /usr/local/bin/fig
$ chmod +x /usr/local/bin/fig

Fig is also available as a Python package if you're on another platform (or if you prefer that sort of thing):

$ sudo pip install -U fig

That should be all you need! Run fig --version to see if it worked.