From 63ed16797d5cab68371bbeba29dfad2a84bea74c Mon Sep 17 00:00:00 2001 From: Qiu Yu Date: Mon, 5 Jan 2015 02:45:33 -0800 Subject: [PATCH] Typo fix in docs/volumes.md --- docs/volumes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/volumes.md b/docs/volumes.md index 70203edee44..6b1d55ebb01 100644 --- a/docs/volumes.md +++ b/docs/volumes.md @@ -5,7 +5,7 @@ A Volume is a directory, possibly with some data in it, which is accessible to a A Pod specifies which Volumes its containers need in its [ContainerManifest](https://developers.google.com/compute/docs/containers/container_vms#container_manifest) property. -A process in a Container sees a filesystem view composed from two sources: a single Docker image and zero or more Volumes. A [Docker image](https://docs.docker.com/userguide/dockerimages/) is at the root of the file hierarchy. Any Volumes are mounted at points on the Docker image; Volumes do not mount on other Volumes and do not have hard links to other Volumes. Each container in the Pod independently specifies where on its its image to mount each Volume. This is specified a VolumeMount property. +A process in a Container sees a filesystem view composed from two sources: a single Docker image and zero or more Volumes. A [Docker image](https://docs.docker.com/userguide/dockerimages/) is at the root of the file hierarchy. Any Volumes are mounted at points on the Docker image; Volumes do not mount on other Volumes and do not have hard links to other Volumes. Each container in the Pod independently specifies where on its its image to mount each Volume. This is specified a VolumeMounts property. ## Resources