You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/_sources/developer/templates.rst
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,8 +59,13 @@ You can use `.github/Dockerfiles/cpac_templates.Dockerfile <https://github.com/F
59
59
.. code:: BASH
60
60
61
61
docker build -t cpac_templates:custom -f .github/Dockerfiles/cpac_templates.Dockerfile .# <-- run in your modified fork or branch of FCP-INDI/C-PAC_templates
62
-
docker run --rm -dit --name=CPACTemplates -v cpac_templates:/cpac_templates ghcr.io/fcp-indi/c-pac_templates:latest # <-- Start a daemon image with your custom templates
63
-
docker run --rm -it -v --volumes-from CPACTemplates fcpindi/c-pac:nightly $BIDS_DIR$OUTPUTS_DIR participant # <-- Use C-PAC as usual, but bind the custom /cpac_templates
62
+
docker run --rm -dit \
63
+
--name=CPACTemplates \
64
+
-v cpac_templates:/cpac_templates \
65
+
ghcr.io/fcp-indi/c-pac_templates:latest # <-- Start a daemon image with your custom templates
66
+
docker run --rm -it \
67
+
--volumes-from CPACTemplates \
68
+
fcpindi/c-pac:nightly $BIDS_DIR$OUTPUTS_DIR participant # <-- Use C-PAC as usual, but bind the custom /cpac_templates
64
69
docker attach CPACTemplates # <-- Clean up when you're done
0 commit comments