一,查找镜像

root@xushi:~# docker search tensorflow
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
tensorflow/tensorflow Official docker images for deep learning f...
jupyter/tensorflow-notebook Jupyter Notebook Scientific Python Stack w...
xblaster/tensorflow-jupyter Dockerized Jupyter with tensorflow [OK]
romilly/rpi-docker-tensorflow Tensorflow and Jupyter running in docker c...
floydhub/tensorflow tensorflow [OK]
erroneousboat/tensorflow-python3-jupyter Docker container with python version of ... [OK]
bitnami/tensorflow-serving Bitnami Docker Image for TensorFlow Serving [OK]
tensorflow/tf_grpc_server Server for TensorFlow GRPC Distributed Run...
mochin/tensorflow-serving tensorflow-serving [OK]
opensciencegrid/tensorflow-gpu TensorFlow GPU set up for OSG
tensorflow/tf_grpc_test_server Testing server for GRPC-based distributed ...
hytssk/tensorflow tensorflow image with matplotlib.pyplot.im... [OK]
eboraas/tensorflow TensorFlow with Jupyter Notebook, includin... [OK]
bitnami/tensorflow-inception Bitnami Docker Image for TensorFlow Inception [OK]
eywalker/tensorflow Docker image for TensorFlow ready environm...
eywalker/tensorflow-jupyter TensorFlow images designed to launch Jupyt...
abhishek404/tensorflow-gpu Tensorflow GPU image
mikebirdgeneau/r-tensorflow RStudio and Tensorflow [OK]
opensciencegrid/tensorflow TensorFlow image with some OSG additions
davidchiu/tensorflow09 tensorflow09 with GPU support
djpetti/rpinets-tensorflow Tensorflow container that is ready to be u... [OK]
aretelabs/tensorflow
fluxcapacitor/prediction-tensorflow
mediadesignpractices/tensorflow Tensorflow w/ CUDA (GPU) + extras [OK]
lab41/tensorflow-notebook

二,下载tensorflow镜像

docker pull tensorflow/tensorflow使用的是默认docker.io的镜像,很慢,改成daocloud.io的镜像

root@xushi:~# docker pull daocloud.io/daocloud/tensorflow
Using default tag: latest
latest: Pulling from daocloud/tensorflow
1be7f2b886e8: Pull complete
6fbc4a21b806: Pull complete
c71a6f8e1378: Pull complete
4be3072e5a37: Pull complete
06c6d2f59700: Pull complete
20a601a42386: Pull complete
d8967df06d5c: Pull complete
adbe4dda11a0: Pull complete
eeb8b3ca49ee: Pull complete
ab96b2cecaaa: Pull complete
e61c2ef48dde: Pull complete
50042b70c2f5: Pull complete
Digest: sha256:188bcda72801c3b756d483e3110a994567f7e3d5f197860279ae68cd2a94f97c
Status: Downloaded newer image for daocloud.io/daocloud/tensorflow:latest

三,查看本地镜像

root@xushi:~# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
mysql latest 5195076672a7 days ago MB
daocloud.io/daocloud/tensorflow latest 414b6e39764a weeks ago 1.27 GB

四,创建并启动容器

docker run -it --name tensorflow01 -v /root/docker/tensorflow/data/notebooks:/notebooks -p : -d 414b6e39764a

五,终端进入docker,并查看notebooks的token

root@xushi:~# docker exec -it tensorflow01 bash
root@9fd3c485a723:/notebooks# jupyter notebook list
Currently running servers:
http://localhost:8888/?token=e0b376d081c919423f5818695f531d4d7e7dfa5523a5049e :: /notebooks

六,在浏览器钟查看notebooks

复制上述地址并把8888端口改成6540,然后在浏览器中打开:

http://localhost:/?token=e0b376d081c919423f5818695f531d4d7e7dfa5523a5049e

docker下安装tensorflow的更多相关文章

  1. Ubuntu下安装Tensorflow

    本文目录 引言 基于Anaconda的tensorflow安装 1 下载linux版本的Anaconda安装包 2 安装Anaconda 利用anaconda安装tensorflow 1 建立一个 c ...

  2. 【适合N卡独显电脑的环境配置】Tensorflow教程-Windows 10下安装tensorflow 1.5.0 GPU with Anaconda

    注意: 1.目前Anaconda 更新原命令activate tensorflow 改为 conda activate tensorflow 2. 目前windows with anaconda 可以 ...

  3. windows10环境下安装Tensorflow

    1.什么是tensorflow TensorFlow是谷歌基于DistBelief进行研发的第二代人工智能学习系统,其命名来源于本身的运行原理.Tensor(张量)意味着N维数组,Flow(流)意味着 ...

  4. CentOS双机中Docker下安装Mysql并配置互为主从模式

    CentOS双机中Docker下安装Mysql并配置互为主从模式 目录 1.搜索镜像... 1 2.拉取镜像... 1 3.绑定端口: 1 4.配置文件(修改/etc/mysql/my.cnf文件): ...

  5. Windows10 64位下安装TensorFlow谷歌人工智能系统已官方原生支持

    Windows10 64位下安装TensorFlow谷歌人工智能系统已官方原生支持 GitHub - tensorflow/tensorflow: Computation using data flo ...

  6. Windows7 64bits下安装TensorFlow CPU版本(图文详解)

    不多说,直接上干货! Installing TensorFlow on Windows的官网 https://www.tensorflow.org/install/install_windows 首先 ...

  7. Anaconda下安装 TensorFlow 和 keras 以及连接pycharm

    首先在官网下载Anaconda https://www.anaconda.com/download/ 安装时注意 勾选第一个,增加环境变量 安装好后再windows界面打开Anaconda Promp ...

  8. tensor搭建--windows 10 64bit下安装Tensorflow+Keras+VS2015+CUDA8.0 GPU加速

    windows 10 64bit下安装Tensorflow+Keras+VS2015+CUDA8.0 GPU加速 原文见于:http://www.jianshu.com/p/c245d46d43f0 ...

  9. Windows7 64bits下安装TensorFlow GPU版本(图文详解)

    不多说,直接上干货! Installing TensorFlow on Windows的官网 https://www.tensorflow.org/install/install_windows 首先 ...

随机推荐

  1. 无线LoRa智能远传水表

    1.1 主流程 无线远传智能预付费水表是基于瑞萨R7F0C002芯片开发的一款水表,该款水表包含了电子计数.远程充值.远程开关阀.费控.欠费提醒等功能. 水表通信采用LoRa无线模式,芯片采用SX12 ...

  2. centos7.4上安装python3环境的坑

    前言:为了将爬虫项目布置到服务器上,才有了今天这一下午的坑,必须记录 不要动现有的python2环境!不要动现有的python2环境!不要动现有的python2环境! 解压 tar -xvf Pyth ...

  3. Maven 基本参数

    -h,--help                              Display help information-am,--also-make                       ...

  4. 退出vim

    不保存修改的退出方法: 先按esc,再依次按下:q!,最后按回车. 保存修改的退出方法: 先按esc,再依次按下:wq,最后按回车.

  5. f5 Seldom used

    1.负载均衡算法 2)最快响应速度(Fastest) •优先查看7层请求的连接数,然后查看4层连接数 •需要在virtual server上关联7层的profile,否则与最小连接数相同 •后台服务器 ...

  6. git 忽略 IntelliJ .idea文件

    git 忽略 IntelliJ .idea文件 2016年10月22日 11:31:27 阅读数:6196 标签: git 更多 个人分类: git   版权声明:本文为博主原创文章,未经博主允许不得 ...

  7. android的图片的初步学习理解

    Android支持JPEG和PNG格式.GIF和BMP格式图片的支持. 图片最终要显示在屏幕上,都会对应一个屏幕上的点,即对应一个颜色值.不同格式的图片,只是不同压缩编码和解压算法. 也就是说,我们看 ...

  8. cgi,fast-cgi,php-cgi,php-fpm转载详解

    转载自:https://segmentfault.com/q/1010000000256516 首先,CGI是干嘛的?CGI是为了保证web server传递过来的数据是标准格式的,方便CGI程序的编 ...

  9. Debug和汇编编译器masm对指令的不同处理

    我们在Debug和源程序中写入同样形式的指令 : "mov al,[0]","mov bl,[1]","mov cl,[2]"," ...

  10. saltstack 迭代项目到客户端并结合jenkins自动发布多台服务器

    前面已经讲解了Webhook实现Push代码后的jenkins自动构建,接下来通过结合slatstack 实现多台机器的项目代码发布. 利用saltstack中file.recurse方法,运用该模块 ...