diff --git a/compose.override.yml b/compose.override.yml index 071f70e..ac5e51f 100644 --- a/compose.override.yml +++ b/compose.override.yml @@ -31,12 +31,12 @@ services: networks: - jupyterhub-network - nginx: - container_name: ${COMPOSE_PROJECT_NAME}-nginx - ports: - - ${NGINX_HTTP_PORT:-80}:80 - - ${NGINX_HTTPS_PORT:-443}:443 - networks: - - jupyterhub-network - depends_on: - - jupyterhub + # nginx: + #container_name: ${COMPOSE_PROJECT_NAME}-nginx + #ports: + #- ${NGINX_HTTP_PORT:-80}:80 + #- ${NGINX_HTTPS_PORT:-443}:443 + #networks: + #- jupyterhub-network + #depends_on: + #- jupyterhub diff --git a/compose.yml b/compose.yml index f46cef8..4c0c32b 100644 --- a/compose.yml +++ b/compose.yml @@ -1,7 +1,7 @@ include: - jupyterhub/compose.yml - postgres/compose.yml - - nginx/compose.yml + # - nginx/compose.yml networks: jupyterhub-network: diff --git a/jupyterhub/jupyterhub_config.py b/jupyterhub/jupyterhub_config.py index 323002a..406d19e 100644 --- a/jupyterhub/jupyterhub_config.py +++ b/jupyterhub/jupyterhub_config.py @@ -89,7 +89,7 @@ c.JupyterHub.spawner_class = DockerSpawner c.DockerSpawner.image = os.environ.get("NOTEBOOK_IMAGE", "jupyter/base-notebook:latest") # Spawn this "version" of the Notebook -c.DockerSpawner.default_url = os.environ.get("SPAWNER_DEFAULT_URL", "/tree") +c.DockerSpawner.default_url = os.environ.get("SPAWNER_DEFAULT_URL", "/lab") # Connect Containers to this network network_name = os.environ.get("DOCKER_NETWORK_NAME", "stack_default")