Browse Source

Add links to Dockerfile docs

Ben Firshman 11 years ago
parent
commit
89d2653662
3 changed files with 4 additions and 2 deletions
  1. 1 1
      docs/django.md
  2. 1 1
      docs/rails.md
  3. 2 0
      docs/wordpress.md

+ 1 - 1
docs/django.md

@@ -17,7 +17,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.
+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/).
 
 Second, we define our Python dependencies in a file called `requirements.txt`:
 

+ 1 - 1
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.
+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/).
 
 Next, we have a bootstrap `Gemfile` which just loads Rails. It'll be overwritten in a moment by `rails new`.
 

+ 2 - 0
docs/wordpress.md

@@ -18,6 +18,8 @@ ADD wp-config.php /wordpress/wp-config.php
 ADD router.php /router.php
 ```
 
+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/).
+
 Next up, `fig.yml` starts our web service and a separate MySQL instance:
 
 ```