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: 8 days ago
JSON representation
docker container for plantuml
- Host: GitHub
- URL: https://github.com/lindt/docker_plantuml
- Owner: lindt
- License: mit
- Created: 2016-03-28T12:01:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-08-30T01:49:55.000Z (about 1 year ago)
- Last Synced: 2024-10-12T03:14:03.879Z (25 days ago)
- Topics: docker, plantuml, tool
- Language: Shell
- Size: 47.9 KB
- Stars: 46
- Watchers: 3
- Forks: 35
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - lindt/docker_plantuml - docker container for plantuml (Shell)
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
```