diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 7460a72d..a27b665d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -6,7 +6,7 @@ If you're looking contribute to [Fig](http://www.fig.sh/)
but you're new to the project or maybe even to Python, here are the steps
that should get you started.
-1. Fork [https://github.com/orchardup/fig](https://github.com/orchardup/fig) to your username. kvz in this example.
+1. Fork [https://github.com/docker/fig](https://github.com/docker/fig) to your username. kvz in this example.
1. Clone your forked repository locally `git clone git@github.com:kvz/fig.git`.
1. Enter the local directory `cd fig`.
1. Set up a development environment `python setup.py develop`. That will install the dependencies and set up a symlink from your `fig` executable to the checkout of the repo. So from any of your fig projects, `fig` now refers to your development project. Time to start hacking : )
diff --git a/README.md b/README.md
index 73af3e8b..dc43f65b 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
Fig
===
-[](https://travis-ci.org/orchardup/fig)
+[](https://travis-ci.org/docker/fig)
[](http://badge.fury.io/py/fig)
Fast, isolated development environments using Docker.
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html
index e2cb4ad2..31c75d52 100644
--- a/docs/_layouts/default.html
+++ b/docs/_layouts/default.html
@@ -44,14 +44,14 @@
Fig is a project from Docker.
-
+
diff --git a/docs/index.md b/docs/index.md
index 4424c665..050b90c6 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -137,4 +137,4 @@ If you started Fig with `fig up -d`, you'll probably want to stop your services
$ fig stop
-That's more-or-less how Fig works. See the reference section below for full details on the commands, configuration file and environment variables. If you have any thoughts or suggestions, [open an issue on GitHub](https://github.com/orchardup/fig).
+That's more-or-less how Fig works. See the reference section below for full details on the commands, configuration file and environment variables. If you have any thoughts or suggestions, [open an issue on GitHub](https://github.com/docker/fig).
diff --git a/docs/install.md b/docs/install.md
index ee15f745..6d2aeb01 100644
--- a/docs/install.md
+++ b/docs/install.md
@@ -16,12 +16,12 @@ Docker has guides for [Ubuntu](http://docs.docker.io/en/latest/installation/ubun
Next, install Fig. On OS X:
- $ curl -L https://github.com/orchardup/fig/releases/download/0.5.2/darwin > /usr/local/bin/fig
+ $ curl -L https://github.com/docker/fig/releases/download/0.5.2/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.5.2/linux > /usr/local/bin/fig
+ $ curl -L https://github.com/docker/fig/releases/download/0.5.2/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):
diff --git a/script/deploy-docs b/script/deploy-docs
index 518815dc..424472f8 100755
--- a/script/deploy-docs
+++ b/script/deploy-docs
@@ -13,7 +13,7 @@ if [ ! -d "$GIT_DIR" ]; then
fi
if !(git remote | grep origin); then
- git remote add origin git@github.com:orchardup/fig.git
+ git remote add origin git@github.com:docker/fig.git
fi
git fetch origin