2013-10-17 17:02:48 +02:00
PlantUML Server
===============
2013-12-11 19:17:50 +01:00
[![Build Status ](https://travis-ci.org/plantuml/plantuml-server.png?branch=master )](https://travis-ci.org/plantuml/plantuml-server)
2013-10-17 17:02:48 +02:00
PlantUML Server is a web application to generate UML diagrams on-the-fly.
2015-03-29 19:12:21 +01:00
![](https://raw.githubusercontent.com/ftomassetti/plantuml-server/readme/screenshots/screenshot.png)
2011-11-02 19:23:39 -03:00
To know more about PlantUML, please visit http://plantuml.sourceforge.net/.
2015-03-29 19:12:21 +01:00
Requirements
============
2011-11-02 19:23:39 -03:00
2015-03-29 19:12:21 +01:00
* jre/jdk 1.6.0 or above
2011-11-02 19:23:39 -03:00
* apache maven 3.0.2 or above
2015-03-29 19:12:21 +01: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 09:32:35 +02:00
How to run the server with Docker
=================================
```
docker build -t plantuml-server .
docker run -d -p 8080:8080 plantuml-server
```
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-04-21 22:53:01 +02: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".
2017-04-24 12:16:12 -04:00
*Note: Generate the WAR (instructions further below) prior to running "docker build"*
2017-04-21 22:53:01 +02:00
```
2017-04-24 12:16:12 -04:00
docker build -t plantuml-server:tomcat8 -f Dockerfile.tomcat8 .
2017-04-21 22:53:01 +02:00
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 09:32:35 +02:00
2015-03-29 19:12:21 +01:00
How to generate the war
=======================
To build the war, just run:
2011-11-12 23:38:43 -02:00
2015-03-29 19:12:21 +01:00
```
mvn package
```
2011-11-12 23:38:43 -02:00
2015-03-29 19:12:21 +01:00
at the root directory of the project to produce plantuml.war in the target/ directory.