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 \
--name mermerd \
--net host \
--pull always \
--rm \
-i \
-t \
-v "${PWD}/storage/:/mnt/storage/" \
mermerd \
--runConfig "/etc/mermerd/config.yml" \
--connectionString "mysql://root:@tcp(host.docker.internal:3306)/mysql"