Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vladholubiev/docker-graphviz-png-cli

CLI to render *.dot -> *.png
https://github.com/vladholubiev/docker-graphviz-png-cli

cli coverter docker graphviz png

Last synced: about 2 months ago
JSON representation

CLI to render *.dot -> *.png

Awesome Lists containing this project

README

        

# docker-graphviz-png-cli

> 101MB Docker image to convert `*.dot` to `*.png` without installing tons of dependencies

[![Docker Automated buil](https://img.shields.io/docker/automated/jrottenberg/ffmpeg.svg)](https://hub.docker.com/r/vladgolubev/dot2png/)

## Usage

```bash
$ cat file.dot | docker container run --rm -i vladgolubev/dot2png > file.png
```

## Help

What does it mean?

It can turn this:

```dot
digraph {
rankdir=LR;
a -> b -> c;
b -> d;
}
```

into this:

![example](example.png)

## Read the Article

[A Better Way of Visualizing Microservice Architecture](https://medium.com/@vladholubiev/an-alternative-way-of-visualizing-microservice-architecture-837cbee575c1#.bxnkxh3jw)