From 9ce069647aa349c44e820fa123a1f60d68cf956b Mon Sep 17 00:00:00 2001 From: milindchawre Date: Mon, 17 Oct 2016 11:54:32 +0000 Subject: [PATCH] Fixes #26818 : Removing bad reference in docker volumes tutorial Signed-off-by: milindchawre --- engine/tutorials/dockervolumes.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/engine/tutorials/dockervolumes.md b/engine/tutorials/dockervolumes.md index 2fb5387048..78a97e5111 100644 --- a/engine/tutorials/dockervolumes.md +++ b/engine/tutorials/dockervolumes.md @@ -158,12 +158,6 @@ $ docker run -d -P --name web -v /src/webapp:/opt/webapp:ro training/webapp pyth Here you've mounted the same `/src/webapp` directory but you've added the `ro` option to specify that the mount should be read-only. -Because of [limitations in the `mount` -function](http://lists.linuxfoundation.org/pipermail/containers/2015-April/035788.html), -moving subdirectories within the host's source directory can give -access from the container to the host's file system. This requires a malicious -user with access to host and its mounted directory. - >**Note**: The host directory is, by its nature, host-dependent. For this >reason, you can't mount a host directory from `Dockerfile` because built images >should be portable. A host directory wouldn't be available on all potential