Sign inSign up

pofider/jsreport

By pofider

Updated over 8 years ago

vnext jsreport

Image
1

167

pofider/jsreport repository overview

Tags

jsreport/jsreport image is automatically pushed with adequate tags into docker hub public repository in two variations:

You can find the list of all available tags and previous versions here

Usage

  1. Install Docker
  2. sudo docker run -p 80:5488 jsreport/jsreport

This is the most basic usage. It will start jsreport server on port 80 directly in the current shell with data and configuration stored directly in container. Change 80 http port to whatever you want.

Start on reboot

You may want to additionally run the container as daemon and restart it on system reboot

sudo docker run -d -p 80:5488 --restart always jsreport/jsreport

Configuring jsreport

The easiest way is to pass the configuration as environment variables. The authentication can be for example applied in this way

sudo docker run -e "extensions_authentication_enabled=true" -e "extensions_authentication_admin_password=xxx" -p 80:5488 jsreport/jsreport

Notice that _ is used as a separator for nested configuration properties. This works usually better in docker environments than also supported : separator.

Persist templates

The templates are by default persisted inside the container. You may rather want to store them in a mounted directory or in an external database.

Mount directory

To mount directory with data you need to create directory /jsreport-home first and then run docker as

sudo docker run -p 80:5488 -v /jsreport-home:/jsreport jsreport/jsreport

Note that you can also create prod.config.json inside the mounted directory and reconfigure jsreport before starting it.

Apply license key

You can apply your license key into the jsreport container using one of the following methods:

  • passing the license key value through an env var sudo docker run -e "license-key=xxyour-key-herexx" -p 80:5488 jsreport/jsreport or sudo docker run -e "licenseKey=xxyour-key-herexx" -p 80:5488 jsreport/jsreport
  • put a license-key.txt file with your key inside the data folder of mounted directory. Ex: if your mounted directory is located at /jsreport-home then you can put your license key at /jsreport-home/data/license-key.txt and then start the container normally.

Persist in external database

The full image like jsreport/jsreport:2.0.0-full has all the custom data stores like mongodb, mssql or PostgreSQL already installed. You only need to properly configure the store environment variable. For example

sudo docker run -e "store_provider=mssql" -e "extensions_mssqlStore_uri=Server=tcp:jsreport.database.windows.net,1433;Initial Catalog=jsreport;Persist Security Info=False;User ID=myuser;Password=password;MultipleActiveResultSets=False;Encrypt=True;" -p 80:5488 jsreport/jsreport:2.0.0-full

Tag summary

Content type

Image

Digest

Size

643.5 MB

Last updated

over 8 years ago

docker pull pofider/jsreport:2.0.1-full