Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/vladholubiev/docker-graphviz-png-cli
- Owner: vladholubiev
- Created: 2017-02-19T19:35:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-09-29T12:23:53.000Z (over 2 years ago)
- Last Synced: 2024-04-14T07:47:30.131Z (9 months ago)
- Topics: cli, coverter, docker, graphviz, png
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/vladgolubev/dot2png/
- Size: 9.77 KB
- Stars: 31
- Watchers: 2
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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)