File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ RUN pip install --upgrade pip && pip install mkdocs-techdocs-core==1.2.2
2626# error (OSError: [Errno 8] Exec format error: 'plantuml') by using the
2727# following RUN command instead:
2828# RUN echo '#!/bin/sh\n\njava -jar '/opt/plantuml.jar' ${@}' >> /usr/local/bin/plantuml
29+
30+ # When adding TechDocs with plantUml diagrams, to refer external puml or pu files in any markdown file,
31+ # eg. '!include <referencedFileName.puml>', need to include diagrams directory eg. docs in the classpath.
32+ # Use following RUN command instead:
33+ # RUN echo $'#!/bin/sh\n\njava -Dplantuml.include.path=${diagramDir} -jar '/opt/plantuml.jar ' ${@}' >> /usr/local/bin/plantuml
2934RUN echo $'#!/bin/sh\n\n java -jar ' /opt/plantuml.jar' ${@}' >> /usr/local/bin/plantuml
3035RUN chmod 755 /usr/local/bin/plantuml
3136
You can’t perform that action at this time.
0 commit comments