From 01bc8584a2c38e3cd67b0b60c258123656857abf Mon Sep 17 00:00:00 2001 From: Brett Randall Date: Thu, 28 Feb 2019 11:27:54 +1100 Subject: [PATCH] Added -p 8000:8000 to jupyterhub Docker quick start command. --- docs/source/quickstart-docker.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/quickstart-docker.rst b/docs/source/quickstart-docker.rst index 85c4eb1a..d4153a14 100644 --- a/docs/source/quickstart-docker.rst +++ b/docs/source/quickstart-docker.rst @@ -25,7 +25,7 @@ Starting JupyterHub with docker The JupyterHub docker image can be started with the following command:: - docker run -d --name jupyterhub jupyterhub/jupyterhub jupyterhub + docker run -d -p 8000:8000 --name jupyterhub jupyterhub/jupyterhub jupyterhub This command will create a container named ``jupyterhub`` that you can **stop and resume** with ``docker stop/start``.