在docker上下载运行tensorflow镜像

1、在dockerHub中搜索到自己需要下载的镜像,我选择了latest-py3-jupyter和latest这两个版本。对应的命令为

docker pull tensorflow/tensorflow:latest-py3-jupyter
docker pull tensorflow/tensorflow:latest

https://hub.docker.com/r/tensorflow/tensorflow

2、启动tensorflow镜像
①通过命令查看当前本地的镜像

docker image ls
image.png

②通过命令启动镜像

docker run -it "上面的IMAGE ID"

不带jupyter的版本:


image.png

就能通过shell跑python程序。

带jupyter的版本:


image.png

将shell上的“http地址”输入到浏览器地址栏,就能够打开jupter程序

你可能感兴趣的:(在docker上下载运行tensorflow镜像)