From 55323ec2062a69bc92a1eff3b46155b1c0638fb0 Mon Sep 17 00:00:00 2001 From: Jake Bartolone Date: Fri, 5 Jul 2019 12:54:09 -0500 Subject: [PATCH] corrected docker network create instructions in dockerfiles README --- dockerfiles/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/README.md b/dockerfiles/README.md index 5799597a..b17546bd 100644 --- a/dockerfiles/README.md +++ b/dockerfiles/README.md @@ -12,7 +12,7 @@ Dockerfile.alpine contains base image for jupyterhub. It does not work independ * start configurable-http-proxy in another container * specify CONFIGPROXY_AUTH_TOKEN env in both containers -* put both containers on the same network (e.g. docker create network jupyterhub; docker run ... --net jupyterhub) +* put both containers on the same network (e.g. docker network create jupyterhub; docker run ... --net jupyterhub) * tell jupyterhub where CHP is (e.g. c.ConfigurableHTTPProxy.api_url = 'http://chp:8001') * tell jupyterhub not to start the proxy itself (c.ConfigurableHTTPProxy.should_start = False) * Use dummy authenticator for ease of testing. Update following in jupyterhub_config file