From f1606a5c504ca781c5699374c6c5411fa66ac176 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 13 Sep 2021 19:25:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Set=20default=20image=20to=20`st?= =?UTF-8?q?effo45/jupyterlab-docker-sophon`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://hub.docker.com/repository/docker/steffo45/jupyterlab-docker-sophon and https://github.com/Steffo99/jupyterlab-docker-sophon --- .../0008_alter_notebook_container_image.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 backend/sophon/notebooks/migrations/0008_alter_notebook_container_image.py diff --git a/backend/sophon/notebooks/migrations/0008_alter_notebook_container_image.py b/backend/sophon/notebooks/migrations/0008_alter_notebook_container_image.py new file mode 100644 index 0000000..f4152b0 --- /dev/null +++ b/backend/sophon/notebooks/migrations/0008_alter_notebook_container_image.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2 on 2021-09-13 17:24 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('notebooks', '0007_alter_notebook_internet_access'), + ] + + operations = [ + migrations.AlterField( + model_name='notebook', + name='container_image', + field=models.CharField(choices=[('jupyter/base-notebook', 'Base'), ('jupyter/minimal-notebook', 'Python'), ('jupyter/scipy-notebook', 'Python (Scientific)'), ('jupyter/tensorflow-notebook', 'Python (Tensorflow)'), ('jupyter/r-notebook', 'Python + R'), ('jupyter/pyspark-notebook', 'Python (Scientific) + Apache Spark'), ('jupyter/all-spark-notebook', 'Python (Scientific) + Scala + R + Apache Spark'), ('steffo45/jupyterlab-docker-sophon', 'Python (Sophonic)')], default='steffo45/jupyterlab-docker-sophon', help_text='The Docker image to run for this notebook.', max_length=256, verbose_name='Docker image'), + ), + ]