From d05463348d68ef03f4b47fde04a7a10b529ac459 Mon Sep 17 00:00:00 2001 From: Jay Pipes Date: Tue, 14 Oct 2014 15:45:10 -0400 Subject: [PATCH] Fixes a bad link in pods.md document The pods.md document was referring to the networking.md document, and was including the docs/ prefix, which led to a 404 due to the link being https://$host/docs/docs/networking.md. Removing the docs/ prefix gets the link working again. --- docs/pods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pods.md b/docs/pods.md index 9d378240a9c..28d99fded9b 100644 --- a/docs/pods.md +++ b/docs/pods.md @@ -12,7 +12,7 @@ Like running containers, pods are considered to be relatively ephemeral rather t Pods facilitate data sharing and communication among their constituents. -The containers in the pod all use the same network namespace/IP and port space, and can find and communicate with each other using localhost. Each pod has an IP address in a flat shared networking namespace that has full communication with other physical computers and containers across the network. The hostname is set to the pod's Name for the containers within the pod. [More details on networking](docs/networking.md). +The containers in the pod all use the same network namespace/IP and port space, and can find and communicate with each other using localhost. Each pod has an IP address in a flat shared networking namespace that has full communication with other physical computers and containers across the network. The hostname is set to the pod's Name for the containers within the pod. [More details on networking](networking.md). In addition to defining the containers that run in the pod, the pod specifies a set of shared storage volumes. Volumes enable data to survive container restarts and to be shared among the containers within the pod.