plantuml-server/README.md

71 lines
2.2 KiB
Markdown
Raw Normal View History

PlantUML Server
===============
2013-12-11 18:17:50 +00:00
[![Build Status](https://travis-ci.org/plantuml/plantuml-server.png?branch=master)](https://travis-ci.org/plantuml/plantuml-server)
2017-04-28 08:31:48 +00:00
[![](https://images.microbadger.com/badges/image/plantuml/plantuml-server.svg)](https://microbadger.com/images/plantuml/plantuml-server "Get your own image badge on microbadger.com")
[![Docker Pull](https://img.shields.io/docker/pulls/plantuml/plantuml-server.svg)](https://hub.docker.com/r/plantuml/plantuml-server/)
PlantUML Server is a web application to generate UML diagrams on-the-fly.
2015-03-29 18:12:21 +00:00
![](https://raw.githubusercontent.com/ftomassetti/plantuml-server/readme/screenshots/screenshot.png)
To know more about PlantUML, please visit http://plantuml.sourceforge.net/.
2015-03-29 18:12:21 +00:00
Requirements
============
2015-03-29 18:12:21 +00:00
* jre/jdk 1.6.0 or above
* apache maven 3.0.2 or above
2015-03-29 18:12:21 +00:00
How to run the server
=====================
Just run:
```
mvn jetty:run
```
The server is now listing to [http://localhost:8080/plantuml](http://localhost:8080/plantuml).
In this way the server is run on an embedded jetty server.
You can specify the port at which it runs:
```
mvn jetty:run -Djetty.port=9999"
```
2017-01-26 07:32:35 +00:00
How to run the server with Docker
=================================
```
2017-04-25 12:55:02 +00:00
docker run -d -p 8080:8080 plantuml/plantuml-server
2017-01-26 07:32:35 +00:00
```
2017-04-25 12:55:02 +00:00
The server is now listing to [http://localhost:8080](http://localhost:8080).
2017-01-26 07:32:35 +00:00
Alternate: How to run the server with Tomcat + Docker?
======================================================
Above method uses maven to run the application. That requires internet connectivity. That is undesireable in a corporate environment with firewalls. So, you can use following command to create a self-contained docker image that will "just-work".
*Note: Generate the WAR (instructions further below) prior to running "docker build"*
```
docker build -t plantuml-server:tomcat8 -f Dockerfile.tomcat8 .
docker run -d -p 8080:8080 plantuml-server:tomcat8
```
The server is now listing to [http://localhost:8080/plantuml](http://localhost:8080/plantuml).
You may specity the port in `-p` Docker command line argument.
2017-01-26 07:32:35 +00:00
2015-03-29 18:12:21 +00:00
How to generate the war
=======================
To build the war, just run:
2015-03-29 18:12:21 +00:00
```
mvn package
```
2015-03-29 18:12:21 +00:00
at the root directory of the project to produce plantuml.war in the target/ directory.