Document our minimum RAM requirement

This commit is contained in:
yuvipanda
2019-05-19 13:08:15 -07:00
parent 2c2a4d9b41
commit b259bedab3
6 changed files with 11 additions and 4 deletions

View File

@@ -29,7 +29,10 @@ def run_systemd_image(image_name, container_name):
'--mount', 'type=bind,source=/sys/fs/cgroup,target=/sys/fs/cgroup',
'--detach',
'--name', container_name,
'--memory', '768M', # This is the minimum VM size we support
# This is the minimum VM size we support. JupyterLab extensions seem
# to need at least this much RAM to build. Boo?
# If we change this, need to change all other references to this number.
'--memory', '768M',
image_name
])