Create Mermaid ERD diagrams from live databases.
This example command connects to a MySQL server running on localhost port 3306.
Replace root:
with your username:password
combination.
docker run --rm -it --pull always --name mermerd \
--net host \
-v "${PWD}/storage/:/mnt/storage/" \
mermerd \
--runConfig "/etc/mermerd/config.yml" \
--connectionString "mysql://root:@tcp(host.docker.internal:3306)/mysql"