Skip to content

Commit 29d24e9

Browse files
committed
fixing pdf building
1 parent 8d056c0 commit 29d24e9

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

doc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pdf:
3838
@$(SPHINXBUILD) -M latex "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
3939
python validate_png.py # clean-up GIFs mislabeled as PNG
4040
cd $(BUILDDIR)/latex && latexmk -r latexmkrc -pdf *.tex -interaction=nonstopmode || true
41-
(test -f $(BUILDDIR)/latex/*.pdf && echo pdf exists) || exit 1
41+
(test -f $(BUILDDIR)/latex/pymapdl-Documentation-*.pdf && echo pdf exists) || exit 1
4242

4343
checklinks:
4444
$(SPHINXBUILD) -b linkcheck $(SPHINXOPTS) $(LINKCHECKDIR)

doc/source/getting_started/docker.rst

+16
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,22 @@ directly from the command line.
5555
You can then use your host Python environment to connect to that MAPDL
5656
instance.
5757

58+
.. graphviz::
59+
60+
digraph {
61+
node [];
62+
subgraph cluster_frontend {
63+
label="*HOST*";
64+
Python;
65+
subgraph cluster_backend {
66+
MAPDL;
67+
label="*DOCKER*";
68+
}
69+
}
70+
Python -> MAPDL
71+
MAPDL -> Python
72+
}
73+
5874
Because this image does not contain a license server, you must enter your
5975
license server IP address in the ``ANSYSLMD_LICENSE_FILE`` environment variable.
6076

0 commit comments

Comments
 (0)