/docker-graphviz

Graphviz installed in a container image.

Primary LanguageDockerfileApache License 2.0Apache-2.0

docker-graphviz

A container image with Graphviz installed.

Building

To build:

docker build --force-rm -t mylib/graphviz .

Running

You'll probably want to start the container with a mounted volume:

docker run -i -t -v "path/to/dot/files:/myvolume" mylib/graphviz bash

And then run dot from within the container:

cd /myvolume
dot -Gdpi=300 -Tpng -o foo.png foo.gv

License

Apache 2.0