Docker image for the community edition of JasperReportsĀ® Server.
100K+
The Docker Image aims to quickly get up-and-running a JasperReports Server for a development environment.
To start the JasperServer container you'll need to pass in 5 environment variables and link it to either a MySQL or Postgres container.
E.g. docker run -d --name jasperserver -e DB_TYPE=mysql -e DB_HOST=db -e DB_PORT=3306 -e DB_USER=root -e DB_PASSWORD=mysql --link jasperserver_mysql:db -p 8080:8080 retriever/jasperserver
If you haven't got an existing MySQL or Postgres container then you can easily create one:
docker run -d --name jasperserver_mysql -e MYSQL_ROOT_PASSWORD=mysql mysql:5.7
To start up the JasperServer and a MySQL container:
docker-compose up to run in foreground ordocker-compose up -d to run as in daemon mode.To stop the containers run docker-compose stop and docker-compose start to restart them.
Note: To install Docker-compose see the releases pageā .
This image includes:
Use docker build -t retriever/jasperserver .
See comments in Dockerfile to speed up testing by not having to download the jasperserver release each time.
If you are having problems starting the containers because of a MySQL error like "[ERROR] [FATAL] Innodb: Table flags are 0...", then you will need to delete the data_dir which contains the MySQL database and then recreate the containers. Please note that you will lose any data previously stored in the database.
This repo is setup to trigger an automated build of the image retriever/jaserpserverā on Docker Hub.
To make a new official version of the image, just push a git Tag using the naming convention major.minor.iteration where:
Content type
Image
Digest
Size
550.3 MB
Last updated
almost 5 years ago
docker pull retriever/jasperserver