@@ -32,7 +32,7 @@ To view the Neurodocker help message
32
32
image. The package manager is ``apt `` or ``yum ``, depending on the base
33
33
image.
34
34
2. Next, users should configure the container to fit their needs. This includes
35
- installing neuroimaing software, installing packages from the chosen package
35
+ installing neuroimaging software, installing packages from the chosen package
36
36
manager, installing Python and Python packages, copying files from the local
37
37
machine into the container, and other operations. The list of supported
38
38
neuroimaging software packages is available in the ``neurodocker `` help
@@ -74,22 +74,24 @@ The Dockerfile can be saved and used to build the Docker image
74
74
Use NeuroDebian
75
75
---------------
76
76
77
- This example install AFNI and ANTs from the NeuoDebian repositories. It also
77
+ This example installs AFNI and ANTs from the NeuroDebian repositories. It also
78
78
installs ``git `` and ``vim ``.
79
79
::
80
- $ docker run --rm kaczmarj/neurodocker:v0.3.2 generate --base neurodebian:stretch --pkg-manager apt --install afni ants git vim
80
+ $ docker run --rm kaczmarj/neurodocker:v0.3.2 generate \
81
+ --base neurodebian:stretch --pkg-manager apt \
82
+ --install afni ants git vim
81
83
82
84
Note: the ``--install `` option will install software using the package manager.
83
85
Because the NeuroDebian repositories are enabled in the chosen base image, AFNI
84
- and ANTs may be installed using the package manager. git and vim are available
85
- in the default repositories.
86
+ and ANTs may be installed using the package manager. `` git `` and `` vim `` are
87
+ available in the default repositories.
86
88
87
89
88
90
Other examples
89
91
--------------
90
92
91
93
Create a container with ``dcm2niix ``, Nipype, and jupyter notebook. Install
92
- Miniconda as a non-root user, and activate the miniconda environment upon
94
+ Miniconda as a non-root user, and activate the Miniconda environment upon
93
95
running the container.
94
96
::
95
97
$ docker run --rm kaczmarj/neurodocker:v0.3.2 generate \
0 commit comments