From 7ab6c2d54d488fe15a417831fbdbce4915454f7c Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Fri, 21 Jun 2013 14:12:52 -0700 Subject: [PATCH] Remove deprecated INSERT from documentation Upstream-commit: 169ef21de768a45805f2afc56b3e5c6f21130b92 Component: engine --- components/engine/docs/sources/use/builder.rst | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/components/engine/docs/sources/use/builder.rst b/components/engine/docs/sources/use/builder.rst index 7892ec6caa..0978bd7d4c 100644 --- a/components/engine/docs/sources/use/builder.rst +++ b/components/engine/docs/sources/use/builder.rst @@ -121,19 +121,7 @@ functionally equivalent to prefixing the command with `=` .. note:: The environment variables will persist when a container is run from the resulting image. -2.7 INSERT ----------- - - ``INSERT `` - -The `INSERT` instruction will download the file from the given url to the given -path within the image. It is similar to `RUN curl -o `, assuming -curl was installed within the image. - -.. note:: - The path must include the file name. - -2.8 ADD +2.7 ADD ------- ``ADD `` @@ -182,7 +170,6 @@ files and directories are created with mode 0700, uid and gid 0. RUN apt-get update RUN apt-get install -y inotify-tools nginx apache2 openssh-server - INSERT https://raw.github.com/creack/docker-vps/master/nginx-wrapper.sh /usr/sbin/nginx-wrapper .. code-block:: bash