MacBookPro OS:Catalina
Pull image from Docker Hub
$ docker pull tensorflow/tensorflow:latest-jupyter
Launch container from image I was using 8888 port on the host side, so I went at 8888: 8888.
$ docker run -it -p 8889:8888 --name tf_test tensorflow/tensorflow:latest-jupyter
After executing the above, it is OK if you access the displayed URL and the Jupyter page is displayed. (If you are not using port 8888, replace it)
Reference site https://www.tensorflow.org/install/docker?hl=ja
Recommended Posts