diff --git a/public/svgs/jupyter.svg b/public/svgs/jupyter.svg new file mode 100644 index 000000000..ab2550874 --- /dev/null +++ b/public/svgs/jupyter.svg @@ -0,0 +1,90 @@ + +Group.svg +Created using Figma 0.90 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/compose/jupyter-notebook-python.yaml b/templates/compose/jupyter-notebook-python.yaml new file mode 100644 index 000000000..757136b25 --- /dev/null +++ b/templates/compose/jupyter-notebook-python.yaml @@ -0,0 +1,19 @@ +# documentation: https://jupyter.org/ +# slogan: Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations, and narrative text. +# tags: notebook, python, data, analysis +# logo: svgs/jupyter.svg +# port: 8888 + +services: + jupyter-notebook-python: + image: quay.io/jupyter/base-notebook:latest + environment: + - SERVICE_FQDN_JUPYTER_8888 + volumes: + - '/jupyter:/home/jovyan/work' + command: start-notebook.sh + healthcheck: + test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:8888/"] + interval: 30s + timeout: 20s + retries: 10 diff --git a/templates/compose/jupyter-notebook.yaml b/templates/compose/jupyter-notebook.yaml deleted file mode 100644 index 92313d087..000000000 --- a/templates/compose/jupyter-notebook.yaml +++ /dev/null @@ -1,13 +0,0 @@ -services: - jupyter-notebook: - image: 'quay.io/jupyter/base-notebook:latest' - environment: - - SERVICE_FQDN_JUPYTER_8888 - volumes: - - '/jupyter:/home/jovyan/work' - command: start-notebook.sh - healthcheck: - test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:8888/"] - interval: 30s - timeout: 20s - retries: 10