Skip to content

Commit d65316f

Browse files
authored
Merge pull request #6573 from luotao1/paddledev
update paddledev to paddlepaddle
2 parents 4d93f0f + 0e18bc8 commit d65316f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

doc/faq/build_and_install/index_cn.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
$ export CUDA_SO="$(\ls usr/lib64/libcuda* | xargs -I{} echo '-v {}:{}') $(\ls /usr/lib64/libnvidia* | xargs -I{} echo '-v {}:{}')"
1616
$ export DEVICES=$(\ls /dev/nvidia* | xargs -I{} echo '--device {}:{}')
17-
$ docker run ${CUDA_SO} ${DEVICES} -it paddledev/paddlepaddle:latest-gpu
17+
$ docker run ${CUDA_SO} ${DEVICES} -it paddlepaddle/paddle:latest-gpu
1818
1919
更多关于Docker的安装与使用, 请参考 `PaddlePaddle Docker 文档 <http://www.paddlepaddle.org/doc_cn/build_and_install/install/docker_install.html>`_ 。
2020

doc/getstarted/build_and_install/docker_install_cn.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,15 +114,15 @@ PaddlePaddle Book是为用户和开发者制作的一个交互式的Jupyter Note
114114

115115
.. code-block:: bash
116116
117-
nvidia-docker run -it -v $PWD:/work paddledev/paddle:latest-gpu /bin/bash
117+
nvidia-docker run -it -v $PWD:/work paddlepaddle/paddle:latest-gpu /bin/bash
118118
119119
**注: 如果没有安装nvidia-docker,可以尝试以下的方法,将CUDA库和Linux设备挂载到Docker容器内:**
120120

121121
.. code-block:: bash
122122
123123
export CUDA_SO="$(\ls /usr/lib64/libcuda* | xargs -I{} echo '-v {}:{}') $(\ls /usr/lib64/libnvidia* | xargs -I{} echo '-v {}:{}')"
124124
export DEVICES=$(\ls /dev/nvidia* | xargs -I{} echo '--device {}:{}')
125-
docker run ${CUDA_SO} ${DEVICES} -it paddledev/paddle:latest-gpu
125+
docker run ${CUDA_SO} ${DEVICES} -it paddlepaddle/paddle:latest-gpu
126126
127127
**关于AVX:**
128128

doc/getstarted/build_and_install/docker_install_en.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,15 @@ GPU driver installed before move on.
122122

123123
.. code-block:: bash
124124
125-
nvidia-docker run -it -v $PWD:/work paddledev/paddle:latest-gpu /bin/bash
125+
nvidia-docker run -it -v $PWD:/work paddlepaddle/paddle:latest-gpu /bin/bash
126126
127127
**NOTE: If you don't have nvidia-docker installed, try the following method to mount CUDA libs and devices into the container.**
128128

129129
.. code-block:: bash
130130
131131
export CUDA_SO="$(\ls /usr/lib64/libcuda* | xargs -I{} echo '-v {}:{}') $(\ls /usr/lib64/libnvidia* | xargs -I{} echo '-v {}:{}')"
132132
export DEVICES=$(\ls /dev/nvidia* | xargs -I{} echo '--device {}:{}')
133-
docker run ${CUDA_SO} ${DEVICES} -it paddledev/paddle:latest-gpu
133+
docker run ${CUDA_SO} ${DEVICES} -it paddlepaddle/paddle:latest-gpu
134134
135135
**About AVX:**
136136

paddle/scripts/cluster_train_v2/openmpi/docker_cluster/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Build this image: docker build -t mpi .
22
#
33

4-
FROM paddledev/paddle:0.10.0rc3
4+
FROM paddlepaddle/paddle:0.10.0rc3
55

66
ENV DEBIAN_FRONTEND noninteractive
77

paddle/scripts/tools/build_docs/build_docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ docker run --rm \
55
-e "WITH_AVX=ON" \
66
-e "WITH_DOC=ON" \
77
-e "WOBOQ=ON" \
8-
${1:-"paddledev/paddle:dev"}
8+
${1:-"paddlepaddle/paddle:latest-dev"}

0 commit comments

Comments
 (0)