fixes path

This commit is contained in:
mathematicalmichael 2019-02-15 20:50:00 -07:00
parent ae9513d7a9
commit 4a7a37693e
2 changed files with 2 additions and 2 deletions

1
.env
View File

@ -41,4 +41,3 @@ DOCKER_SPAWN_CMD=start-singleuser.sh
# you can print the password for this hub-admin user with 'bash show_login.sh' # you can print the password for this hub-admin user with 'bash show_login.sh'
USERNAME=hub-admin USERNAME=hub-admin
PASSWORD_LENGTH=6 PASSWORD_LENGTH=6
HUB_LOC=/home/pilosovm/hub

View File

@ -1,5 +1,6 @@
# Copyright (c) Jupyter Development Team. # Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License. # Distributed under the terms of the Modified BSD License.
# Major edits by MathematicalMichael(.com) 02-2019
# Configuration file for JupyterHub # Configuration file for JupyterHub
import os import os
@ -82,7 +83,7 @@ spawn_cmd = os.environ.get('DOCKER_SPAWN_CMD', "start-singleuser.sh")
c.DockerSpawner.extra_create_kwargs.update({ 'command': spawn_cmd }) c.DockerSpawner.extra_create_kwargs.update({ 'command': spawn_cmd })
# Memory limit # Memory limit
c.Spawner.mem_limit = '50G' # RAM limit c.Spawner.mem_limit = '4G' # RAM limit
c.Spawner.cpu_limit = 0.0001 c.Spawner.cpu_limit = 0.0001
# Connect containers to this Docker network # Connect containers to this Docker network