From 4c9b6d114e860487715185096116e2e38401884c Mon Sep 17 00:00:00 2001 From: acosta123 <42226556+acosta123@users.noreply.github.com> Date: Mon, 3 Jun 2019 10:47:55 +0800 Subject: [PATCH] Update doc/fluid/beginners_guide/install/install_Docker_en.md Co-Authored-By: Hao Wang <31058429+haowang101779990@users.noreply.github.com> --- doc/fluid/beginners_guide/install/install_Docker_en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/fluid/beginners_guide/install/install_Docker_en.md b/doc/fluid/beginners_guide/install/install_Docker_en.md index e750f45af..492c501e5 100644 --- a/doc/fluid/beginners_guide/install/install_Docker_en.md +++ b/doc/fluid/beginners_guide/install/install_Docker_en.md @@ -24,7 +24,7 @@ `docker run --name [Name of container] -it -v $PWD:/paddle /bin/bash` - > Parameters in the commands above mean: --name [Name of container] set the name ofDocker;-it the parameter means the container has been working interactively with the localhost; -v $PWD:/paddle appoints to pull the present path(which will unfold to absolute path by PWD variable on Linux) to /paddle catalogue inside the container; `` appoints the name of the image needed, and you can check by `docker images` command;/bin/bash is the command to execute in Docker + > The meanings of the parameters in the command above : --name [Name of container] sets the name of Docker;-it means the container has been working interactively with the localhost; -v $PWD:/paddle mounts the present path (PWD will be expanded to the absolute path on Linux) to /paddle directory inside the container; `` specifies the name of the image needed, and you can check it by `docker images` command;/bin/bash is the command to execute in Docker. So far, you have installed PaddlePaddle with Docker successfully, for more usage details please refer to [Docker Official Documents](https://docs.docker.com) -- GitLab