From 845d29805d2472334f3a53e19d90a20ef9ec5399 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20S=C3=A1nchez=20Rois?= Date: Fri, 29 Sep 2017 14:39:58 +0200 Subject: [PATCH] Changed the name of the docker image Image name is docker-ipython-opencv --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e003856..495829a 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ jupyter/scipy-notebook ##### (Assumes that docker has been installed. If not, start [here](https://docs.docker.com/installation/#installation).) Pull it: ``` - docker pull trafferty/jupyter-opencv + docker pull trafferty/docker-ipython-opencv ``` Run it: ``` - docker run --name cv_notebook -d -p 443:8888 -v $(pwd):/notebooks -e "PASSWORD=MY_PASSWORD" trafferty/jupyter-opencv + docker run --name cv_notebook -d -p 443:8888 -v $(pwd):/notebooks -e "PASSWORD=MY_PASSWORD" trafferty/docker-ipython-opencv ``` After it is running, point your browser to https://localhost, login with the password provided in above step, and you can then start your first ipython notebook using the wonderful OpenCV module. Here is some sample code to get you started: ```