Ecosyste.ms: Awesome

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

https://github.com/lindt/docker_plantuml

docker container for plantuml
https://github.com/lindt/docker_plantuml

docker plantuml tool

Last synced: 16 days ago
JSON representation

docker container for plantuml

Lists

README

        

[![](https://badge.imagelayers.io/think/plantuml.svg)](https://imagelayers.io/?images=think/plantuml:latest 'think/plantuml')
[![Docker pulls](https://img.shields.io/docker/pulls/think/plantuml.svg)](https://hub.docker.com/r/think/plantuml/)
[![Latest Tag](https://img.shields.io/github/tag/lindt/docker_plantuml.svg)](https://hub.docker.com/r/think/plantuml/)

# docker_plantuml

Docker Container for [PlantUML](http://plantuml.com)

## Motivation

To use plantuml, it needs to be downloaded, java needs to be installed, graphviz needs to be installed, and these things need to be chained.
This docker container does this for you. And allows you to pipe by default into plantuml, so it's neat for script usage.

## Usage

```
cat test.uml | docker run --rm -i think/plantuml > test.svg
```

The default will output svg. If png output is wanted, call it like this:

```
cat test.uml | docker run --rm -i think/plantuml -tpng > test.png
```