浏览代码

Merge pull request #3600 from londoncalling/fix-broken-links-PR-23492

fixes broken links in 3 Compose docs files due to topic re-org in PR#…

Merging to address broken links. One more to go in (DTR).
Victoria 9 年之前
父节点
当前提交
f8f582f349
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      docs/django.md
  2. 1 1
      docs/gettingstarted.md
  3. 1 1
      docs/rails.md

+ 1 - 1
docs/django.md

@@ -29,7 +29,7 @@ and a `docker-compose.yml` file.
     The Dockerfile defines an application's image content via one or more build
     The Dockerfile defines an application's image content via one or more build
     commands that configure that image. Once built, you can run the image in a
     commands that configure that image. Once built, you can run the image in a
     container.  For more information on `Dockerfiles`, see the [Docker user
     container.  For more information on `Dockerfiles`, see the [Docker user
-    guide](/engine/userguide/containers/dockerimages.md#building-an-image-from-a-dockerfile)
+    guide](/engine/tutorials/dockerimages.md#building-an-image-from-a-dockerfile)
     and the [Dockerfile reference](/engine/reference/builder.md).
     and the [Dockerfile reference](/engine/reference/builder.md).
 
 
 3. Add the following content to the `Dockerfile`.
 3. Add the following content to the `Dockerfile`.

+ 1 - 1
docs/gettingstarted.md

@@ -77,7 +77,7 @@ dependencies the Python application requires, including Python itself.
   * Install the Python dependencies.
   * Install the Python dependencies.
   * Set the default command for the container to `python app.py`
   * Set the default command for the container to `python app.py`
 
 
-  For more information on how to write Dockerfiles, see the [Docker user guide](/engine/userguide/containers/dockerimages.md#building-an-image-from-a-dockerfile) and the [Dockerfile reference](/engine/reference/builder.md).
+  For more information on how to write Dockerfiles, see the [Docker user guide](/engine/tutorials/dockerimages.md#building-an-image-from-a-dockerfile) and the [Dockerfile reference](/engine/reference/builder.md).
 
 
 2. Build the image.
 2. Build the image.
 
 

+ 1 - 1
docs/rails.md

@@ -32,7 +32,7 @@ Dockerfile consists of:
 
 
 That'll put your application code inside an image that will build a container
 That'll put your application code inside an image that will build a container
 with Ruby, Bundler and all your dependencies inside it. For more information on
 with Ruby, Bundler and all your dependencies inside it. For more information on
-how to write Dockerfiles, see the [Docker user guide](/engine/userguide/containers/dockerimages.md#building-an-image-from-a-dockerfile) and the [Dockerfile reference](/engine/reference/builder.md).
+how to write Dockerfiles, see the [Docker user guide](/engine/tutorials/dockerimages.md#building-an-image-from-a-dockerfile) and the [Dockerfile reference](/engine/reference/builder.md).
 
 
 Next, create a bootstrap `Gemfile` which just loads Rails. It'll be overwritten in a moment by `rails new`.
 Next, create a bootstrap `Gemfile` which just loads Rails. It'll be overwritten in a moment by `rails new`.