From 3c0c52ce8596bae4f05740811c08db4629bdc1b3 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Thu, 8 Oct 2015 09:56:38 -0400 Subject: [PATCH] README.md: Made a note about the directory inside the container and how it relates to the current working directory. [ci skip] --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 06619d062a..1eb08f4935 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,8 @@ If you have a [Docker daemon running](https://docs.docker.com/installation/), e. $ 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. +All notebooks from your session will be saved in the current directory. In reality, they are save inside the container at `/notebook`. +These are then synced to current working directory. On other platforms without `docker`, this can be started using `docker-machine` by replacing `localhost` with an IP from [`docker-machine ip `](https://docs.docker.com/machine/reference/ip/).