mermaid is an open source tool for generating diagram and flowchart from text in a similar manner as markdown. This docker image contains mermaid 7.0.0 and is build on top of the official node 8.8.1 image.
docker run --rm -v "$PWD":/data:z -u "$UID:$GID" felixlohmeier/mermaid myflowchart.mdd
version: '3.7'
services:
mermaid:
user: "$UID:$GID"
image: felixlohmeier/mermaid
volumes:
- ./:/data:z
command: ["-s", "-p", "myflowchart.mdd"]
- Create your graph in mermaid's live editor
- Copy & paste your graph config in a text editor and save it to a local file
- Download a stylesheet from https://unpkg.com/[email protected]/dist/themes/ (and customize it if you want)
- Run a docker container with this Docker image to create png and svg.
- render both formats (svg + png):
-s -p
- width of the png: 600 pixel:
-w 600
- apply custom stylesheet mermaid.neutral.css from local file
-t mermaid.neutral.css
- name of local file containing graph config:
myflowchart.mmd
docker run --rm -v "$PWD":/data:z -u "$UID:$GID" felixlohmeier/mermaid -s -p -w 600 -t mermaid.neutral.css myflowchart.mmd