diff --git a/django.html b/django.html index 8cff1ea4..c1965c6c 100644 --- a/django.html +++ b/django.html @@ -30,7 +30,7 @@ ADD requirements.txt /code/ 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 and the Dockerfile reference.
+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 and the Dockerfile reference.
Second, we define our Python dependencies in a file called requirements.txt:
Django
diff --git a/index.html b/index.html
index 38f46fee..5cd4757a 100644
--- a/index.html
+++ b/index.html
@@ -101,7 +101,7 @@ ADD . /code
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 and the Dockerfile reference.
+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 and the Dockerfile reference.
We then define a set of services using fig.yml:
web:
diff --git a/rails.html b/rails.html
index e661b044..5ba47450 100644
--- a/rails.html
+++ b/rails.html
@@ -30,7 +30,7 @@ ADD Gemfile /myapp/Gemfile
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 and the Dockerfile reference.
+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 and the Dockerfile reference.
Next, we have a bootstrap Gemfile which just loads Rails. It'll be overwritten in a moment by rails new.
source 'https://rubygems.org'
diff --git a/wordpress.html b/wordpress.html
index 53bb2ca4..018b94a5 100644
--- a/wordpress.html
+++ b/wordpress.html
@@ -26,7 +26,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 and the Dockerfile reference.
+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 and the Dockerfile reference.
Next up, fig.yml starts our web service and a separate MySQL instance:
web: