Skip to content

Commit 3017261

Browse files
authored
FIX: typo fix in docker notebook
1 parent 316d37d commit 3017261

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebooks/introduction_docker.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"- The ``--rm`` flag tells docker that the container should automatically be removed after we close docker.\n",
7979
"- The ``-p`` flag specifies which port we want to make available for docker.\n",
8080
"- The ``-v`` flag tells docker which folders should be mount to make them accesible inside the container. Here: ``/path/to/nipype_tutorial`` is your local directory where you downloaded [Nipype Tutorial repository](https://github.com/miykael/nipype_tutorial/). ``/path/to/data/`` is a directory where you have dataset [``ds000114``](https://openfmri.org/dataset/ds000114/), and ``/path/to/output`` can be an empty directory that will be used for output. The second part of the ``-v`` flag (here: ``/home/neuro/nipype_tutorial``, ``/data`` or ``/output``) specifies under which path the mounted folders can be found inside the container. **Important**: To use the ``tutorial``, ``data`` and ``output`` folder, you first need to create them on your system!\n",
81-
"- ``sdjarecka/nipype_tutorial`` tells docker which image you want to run.\n",
81+
"- ``djarecka/nipype_tutorial`` tells docker which image you want to run.\n",
8282
"- ``jupyter notebook`` tells that you want to run directly the jupyter notebook command within the container. Alternatively, you can also use ``jupyter-lab``, ``bash`` or ``ipython``.\n",
8383
"\n",
8484
"**Note** that when you run this docker image without any more specification, than it will prompt you a URL link in your terminal that you will need to copy paste into your browser to get to the notebooks. "

0 commit comments

Comments
 (0)