Sign inSign up

smtx/jsreport-docker

By smtx

Updated over 10 years ago

JSREPORT in Docker with custom names and multiple worksheets on XLSX recipe.

Image
0

318

smtx/jsreport-docker repository overview

#jsreport/jsreport

jsreport/jsreport is a docker based image for easily running jsreport reporting server.

##Usage

  1. Install Docker
  2. sudo docker run -p 443:2945 jsreport/jsreport

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

However it is recommended to run jsreport in the following way.

  1. create directory where the jsreport persistent data and configuration will resists
  2. sudo docker run -d -p 443:2945 --restart always -v /jsreport-home:/jsreport jsreport/jsreport where the first /jsreport-home path is path to directory created in the previous step

This will start jsreport as a daemon and restart it after system reboot as well. /jsreport-home folder will be used to store persistent data and configuration. Changes will take an effect after container restart.

Tag summary

Content type

Image

Digest

sha256:7ac06c02e

Size

369.3 MB

Last updated

over 10 years ago

docker pull smtx/jsreport-docker