From c66e18c913cda2a0e2881d8089cecc12c0b6fb5c Mon Sep 17 00:00:00 2001 From: Aanand Prasad Date: Sat, 1 Mar 2014 11:28:31 +0000 Subject: [PATCH] Fix Dockerfile reference URL in docs --- docs/django.md | 2 +- docs/index.md | 2 +- docs/rails.md | 2 +- docs/wordpress.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/django.md b/docs/django.md index 9e927916ad..476c0c2b6f 100644 --- a/docs/django.md +++ b/docs/django.md @@ -18,7 +18,7 @@ Let's set up the three files that'll get us started. First, our app is going to RUN pip install -r requirements.txt ADD . /code/ -That'll install our application inside an image with Python installed alongside all of our Python dependencies. For more information on how to write Dockerfiles, see the [Dockerfile tutorial](https://www.docker.io/learn/dockerfile/) and the [Dockerfile reference](http://docs.docker.io/en/latest/use/builder/). +That'll install our application inside an image with Python installed alongside all of our Python dependencies. For more information on how to write Dockerfiles, see the [Dockerfile tutorial](https://www.docker.io/learn/dockerfile/) and the [Dockerfile reference](http://docs.docker.io/en/latest/reference/builder/). Second, we define our Python dependencies in a file called `requirements.txt`: diff --git a/docs/index.md b/docs/index.md index 5fd7274bd9..64713244ec 100644 --- a/docs/index.md +++ b/docs/index.md @@ -99,7 +99,7 @@ Next, we want to create a Docker image containing all of our app's dependencies. WORKDIR /code RUN pip install -r requirements.txt -This tells Docker to install Python, our code and our Python dependencies inside a Docker image. For more information on how to write Dockerfiles, see the [Dockerfile tutorial](https://www.docker.io/learn/dockerfile/) and the [Dockerfile reference](http://docs.docker.io/en/latest/use/builder/). +This tells Docker to install Python, our code and our Python dependencies inside a Docker image. For more information on how to write Dockerfiles, see the [Dockerfile tutorial](https://www.docker.io/learn/dockerfile/) and the [Dockerfile reference](http://docs.docker.io/en/latest/reference/builder/). We then define a set of services using `fig.yml`: diff --git a/docs/rails.md b/docs/rails.md index 0ee56b65cc..dca4dbe77a 100644 --- a/docs/rails.md +++ b/docs/rails.md @@ -18,7 +18,7 @@ Let's set up the three files that'll get us started. First, our app is going to RUN bundle install ADD . /myapp -That'll put our application code inside an image with Ruby, Bundler and all our dependencies. For more information on how to write Dockerfiles, see the [Dockerfile tutorial](https://www.docker.io/learn/dockerfile/) and the [Dockerfile reference](http://docs.docker.io/en/latest/use/builder/). +That'll put our application code inside an image with Ruby, Bundler and all our dependencies. For more information on how to write Dockerfiles, see the [Dockerfile tutorial](https://www.docker.io/learn/dockerfile/) and the [Dockerfile reference](http://docs.docker.io/en/latest/reference/builder/). Next, we have a bootstrap `Gemfile` which just loads Rails. It'll be overwritten in a moment by `rails new`. diff --git a/docs/wordpress.md b/docs/wordpress.md index 6ddfebd250..70ea9f6204 100644 --- a/docs/wordpress.md +++ b/docs/wordpress.md @@ -17,7 +17,7 @@ FROM orchardup/php5 ADD . /code ``` -This instructs Docker on how to build an image that contains PHP and Wordpress. For more information on how to write Dockerfiles, see the [Dockerfile tutorial](https://www.docker.io/learn/dockerfile/) and the [Dockerfile reference](http://docs.docker.io/en/latest/use/builder/). +This instructs Docker on how to build an image that contains PHP and Wordpress. For more information on how to write Dockerfiles, see the [Dockerfile tutorial](https://www.docker.io/learn/dockerfile/) and the [Dockerfile reference](http://docs.docker.io/en/latest/reference/builder/). Next up, `fig.yml` starts our web service and a separate MySQL instance: