Skip to content

Commit

Permalink
release jsreport 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bjrmatos committed Dec 7, 2023
1 parent b2403c6 commit 91daa06
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions packages/jsreport/docker/README.md
Expand Up @@ -4,17 +4,17 @@ Tags

[jsreport/jsreport](https://hub.docker.com/r/jsreport/jsreport/) image is automatically pushed with adequate tags into [docker hub](https://www.docker.com/) public repository in three variations:
>
- `jsreport/jsreport:4.1.0` ([Dockerfile](https://github.com/jsreport/jsreport/blob/4.1.0/packages/jsreport/docker/default/Dockerfile)) contains default installation from npm
- `jsreport/jsreport:4.1.0-full` ([Dockerfile](https://github.com/jsreport/jsreport/blob/4.1.0/packages/jsreport/docker/full/Dockerfile)) contains default installation plus all the custom extensions, see the list of installed extensions in the dockerfile
- `jsreport/jsreport:4.1.0-windowsservercore` ([Dockerfile](https://github.com/jsreport/jsreport/blob/4.1.0/packages/jsreport/docker/windowsservercore/Dockerfile)) contains default installation with windows server core based image. Use `c:\jsreport` for mounting volume.
- `jsreport/jsreport:4.2.0` ([Dockerfile](https://github.com/jsreport/jsreport/blob/4.2.0/packages/jsreport/docker/default/Dockerfile)) contains default installation from npm
- `jsreport/jsreport:4.2.0-full` ([Dockerfile](https://github.com/jsreport/jsreport/blob/4.2.0/packages/jsreport/docker/full/Dockerfile)) contains default installation plus all the custom extensions, see the list of installed extensions in the dockerfile
- `jsreport/jsreport:4.2.0-windowsservercore` ([Dockerfile](https://github.com/jsreport/jsreport/blob/4.2.0/packages/jsreport/docker/windowsservercore/Dockerfile)) contains default installation with windows server core based image. Use `c:\jsreport` for mounting volume.

You can find the list of all available tags and previous versions in the [tags tab](https://hub.docker.com/r/jsreport/jsreport/tags/)

Usage
-----

1. Install [Docker](https://www.docker.com/)
2. `sudo docker run -p 80:5488 jsreport/jsreport:4.1.0`
2. `sudo docker run -p 80:5488 jsreport/jsreport:4.2.0`

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 the container. Change 80 http port to whatever you want.

Expand Down
4 changes: 2 additions & 2 deletions packages/jsreport/docker/default/Dockerfile
Expand Up @@ -38,9 +38,9 @@ RUN addgroup -g "${GID}" -S jsreport && adduser --shell /bin/bash -u "${UID}" -S
# this condition is useful when the alpine registry contain different latest versions
# per architecture, if the versions match then just use the same version number on both paths
RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
export CHROMIUM_TO_INSTALL_VERSION="117.0.5938.62-r0"; \
export CHROMIUM_TO_INSTALL_VERSION="119.0.6045.159-r0"; \
elif [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
export CHROMIUM_TO_INSTALL_VERSION="117.0.5938.62-r0"; \
export CHROMIUM_TO_INSTALL_VERSION="119.0.6045.159-r0"; \
fi && \
echo "Installing Chromium $CHROMIUM_TO_INSTALL_VERSION version.." && \
apk update --no-cache && \
Expand Down
4 changes: 2 additions & 2 deletions packages/jsreport/docker/default/Dockerfile.local
Expand Up @@ -38,9 +38,9 @@ RUN addgroup -g "${GID}" -S jsreport && adduser --shell /bin/bash -u "${UID}" -S
# this condition is useful when the alpine registry contain different latest versions
# per architecture, if the versions match then just use the same version number on both paths
RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
export CHROMIUM_TO_INSTALL_VERSION="117.0.5938.62-r0"; \
export CHROMIUM_TO_INSTALL_VERSION="119.0.6045.159-r0"; \
elif [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
export CHROMIUM_TO_INSTALL_VERSION="117.0.5938.62-r0"; \
export CHROMIUM_TO_INSTALL_VERSION="119.0.6045.159-r0"; \
fi && \
echo "Installing Chromium $CHROMIUM_TO_INSTALL_VERSION version.." && \
apk update --no-cache && \
Expand Down
8 changes: 4 additions & 4 deletions packages/jsreport/docker/full/Dockerfile
Expand Up @@ -61,15 +61,15 @@ RUN npm install --save --save-exact @jsreport/jsreport-ejs@4.0.0 \
@jsreport/jsreport-pug@5.0.0 \
@jsreport/jsreport-aws-s3-storage@4.0.0 \
@jsreport/jsreport-azure-storage@4.0.0 \
@jsreport/jsreport-docxtemplater@4.0.0 \
@jsreport/jsreport-docxtemplater@4.0.1 \
@jsreport/jsreport-mssql-store@4.0.0 \
@jsreport/jsreport-postgres-store@4.0.0 \
@jsreport/jsreport-mongodb-store@4.0.0 \
@jsreport/jsreport-office-password@4.0.0 \
@jsreport/jsreport-html-to-text@4.0.0 \
@jsreport/jsreport-html-embedded-in-docx@4.0.0 \
@jsreport/jsreport-fs-store-aws-s3-persistence@4.0.0 \
@jsreport/jsreport-fs-store-azure-storage-persistence@4.0.0 \
@jsreport/jsreport-html-embedded-in-docx@4.0.1 \
@jsreport/jsreport-fs-store-aws-s3-persistence@4.0.1 \
@jsreport/jsreport-fs-store-azure-storage-persistence@4.0.1 \
@jsreport/jsreport-unoconv@4.0.0 \
cheerio-page-eval@1.1.0

Expand Down
2 changes: 1 addition & 1 deletion packages/jsreport/package.json
@@ -1,6 +1,6 @@
{
"name": "jsreport",
"version": "4.1.0",
"version": "4.2.0",
"description": "javascript based business reporting",
"keywords": [
"report",
Expand Down

0 comments on commit 91daa06

Please sign in to comment.