Browse code

Fix Plugins links

Signed-off-by: Morgan Bauer <mbauer@us.ibm.com>

Morgan Bauer authored on 2015/07/25 02:24:25
Showing 4 changed files
... ...
@@ -15,8 +15,6 @@ weight = 6
15 15
 
16 16
 Currently, you can extend Docker by adding a plugin. This section contains the following topics:
17 17
 
18
-* [Understand Docker plugins](plugins.md)
19
-* [Write a volume plugin](plugins_volumes.md)
20
-* [Docker plugin API](plugin_api.md)
21
-
22
- 
23 18
\ No newline at end of file
19
+* [Understand Docker plugins](/extend/plugins)
20
+* [Write a volume plugin](/extend/plugins_volume)
21
+* [Docker plugin API](/extend/plugin_api)
... ...
@@ -16,7 +16,7 @@ Docker Engine.
16 16
 
17 17
 This page is intended for people who want to develop their own Docker plugin.
18 18
 If you just want to learn about or use Docker plugins, look
19
-[here](plugins.md).
19
+[here](/extend/plugins).
20 20
 
21 21
 ## What plugins are
22 22
 
... ...
@@ -17,7 +17,7 @@ plugins.
17 17
 ## Types of plugins
18 18
 
19 19
 Plugins extend Docker's functionality.  They come in specific types.  For
20
-example, a [volume plugin](plugins_volume.md) might enable Docker
20
+example, a [volume plugin](/extend/plugins_volume) might enable Docker
21 21
 volumes to persist across multiple Docker hosts.
22 22
 
23 23
 Currently Docker supports volume and network driver plugins. In the future it
... ...
@@ -56,4 +56,4 @@ of the plugin for help. The Docker team may not be able to assist you.
56 56
 ## Writing a plugin
57 57
 
58 58
 If you are interested in writing a plugin for Docker, or seeing how they work
59
-under the hood, see the [docker plugins reference](plugin_api.md).
59
+under the hood, see the [docker plugins reference](/extend/plugin_api).
... ...
@@ -12,7 +12,7 @@ parent = "mn_extend"
12 12
 
13 13
 Docker volume plugins enable Docker deployments to be integrated with external
14 14
 storage systems, such as Amazon EBS, and enable data volumes to persist beyond
15
-the lifetime of a single Docker host. See the [plugin documentation](plugins.md)
15
+the lifetime of a single Docker host. See the [plugin documentation](/extend/plugins)
16 16
 for more information.
17 17
 
18 18
 # Command-line changes