Skip to content

Commit d85202e

Browse files
committed
Add recipe on running Jupyter Docker Stacks with Singularity
1 parent 1eee85d commit d85202e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/using/recipes.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -520,3 +520,15 @@ they may be explained in the "Installation instructions" section of the Download
520520
```{literalinclude} recipe_code/oracledb.dockerfile
521521
:language: docker
522522
```
523+
524+
## Running Jupyter Docker Stacks with Singularity
525+
526+
You can also start Jupyter Docker Stacks containers using **Singularity** instead of Docker. For example:
527+
528+
```bash
529+
singularity run -B "${PWD}":/home/jovyan/work docker://quay.io/jupyter/datascience-notebook:2025-11-06
530+
```
531+
532+
- -B "${PWD}":/home/jovyan/work binds your current directory into the container at /home/jovyan/work.
533+
- Replace quay.io/jupyter/datascience-notebook:2025-11-06 with the desired stack and tag.
534+
- Once running, you can access your notebooks just as you would in Docker.

0 commit comments

Comments
 (0)