Try setting minimum required RAM to 768M

512MB is too little for installing jupyterlab extensions :'(
This commit is contained in:
yuvipanda
2019-05-19 12:16:40 -07:00
parent 48c819b422
commit 2c2a4d9b41

View File

@@ -29,7 +29,7 @@ def run_systemd_image(image_name, container_name):
'--mount', 'type=bind,source=/sys/fs/cgroup,target=/sys/fs/cgroup',
'--detach',
'--name', container_name,
'--memory', '512M', # This is the minimum VM size we support
'--memory', '768M', # This is the minimum VM size we support
image_name
])