From 91cc9fb36939b35209a75128250b54846890bed4 Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Tue, 12 Oct 2021 08:36:24 +0200 Subject: [PATCH] [web] Added note about jupyter container tag. --- .../docs/userguide/basics/jupyter-notebooks.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/web/content/docs/userguide/basics/jupyter-notebooks.md b/web/content/docs/userguide/basics/jupyter-notebooks.md index e2bea6142c0..cee8a43c030 100644 --- a/web/content/docs/userguide/basics/jupyter-notebooks.md +++ b/web/content/docs/userguide/basics/jupyter-notebooks.md @@ -73,12 +73,26 @@ singularity run docker://registry.opengeosys.org/ogs/ogs/ogs-serial-jupyter Open the specified URL shown in the command output in your browser, e.g. -``` +```bash http://127.0.0.1:8888/lab?token=xxx ``` You may have to modify the IP address if this is running on a remote machine. +<div class="note"> + +#### <i class="fab fa-windows"></i> Specific OGS version + +You can append a version number to the image name (applies both to Docker and Singularity) to get an image for a specific OGS release (starting with 6.4.1): + +``` +singularity run docker://registry.opengeosys.org/ogs/ogs/ogs-serial-jupyter:6.4.1 +``` + +Available images are [listed on GitLab](https://gitlab.opengeosys.org/ogs/ogs/container_registry/79). + +</div> + ### Browsing notebooks on GitLab In the file browser on the left-hand side of the Jupyter Lab interface there is a GitLab-tab which allows for browsing and opening notebooks from the [ogs/ogs](https://gitlab.opengeosys.org/ogs/ogs)-repository. You can directly modify and execute a notebook, but the notebook is not saved back to GitLab. You can change the browsed repository by typing into the top text field. -- GitLab