From 4808b9b0516c77ff1367e0941fe1488ab47f45d6 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Thu, 8 Oct 2015 09:52:15 -0400 Subject: [PATCH] README.md: Appears that `-P` publishes to random ports so switch back to mapping ports explicitly. [ci skip] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc13b35cd..06619d062 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Launch with: If you have a [Docker daemon running](https://docs.docker.com/installation/), e.g. reachable on `localhost`, start a container with: - $ docker run --rm -itP -v "$(pwd):/notebooks" jupyter/notebook + $ docker run --rm -it -p 8888:8888 -v "$(pwd):/notebooks" jupyter/notebook In your browser open the URL `http://localhost:8888/`. All notebooks from your session will be saved in the current directory.