From f0e4cfa75ab44e31ad70a89e6dbd220e0d201817 Mon Sep 17 00:00:00 2001 From: che0one <167894882+che0one@users.noreply.github.com> Date: Sat, 2 Nov 2024 23:14:59 +0400 Subject: [PATCH] Create jupyter-notebook.yaml Add jupyter-notebook Everything works well --- templates/compose/jupyter-notebook.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 templates/compose/jupyter-notebook.yaml diff --git a/templates/compose/jupyter-notebook.yaml b/templates/compose/jupyter-notebook.yaml new file mode 100644 index 000000000..92313d087 --- /dev/null +++ b/templates/compose/jupyter-notebook.yaml @@ -0,0 +1,13 @@ +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