I am attempting to deploy TIBCO JasperReports Server on Docker using the information about setting up Jaspersoft in Docker at https://github.com/TIBCOSoftware/js-docker for version 8.0
As per instructions I downloaded the Enterprise Edition War File and put the TIB_js-jrs_8.0.0_bin.zip in the js-docker directory and then ran the unpackWARInstaller.sh
When I run docker-compose build I get the following error /usr/local/scripts/installPackagesForBuildomatic.sh: not found and the
Service 'jasperserver-buildomatic' fails to build
Attached is the result of the docker-compose build
Attachments:
0 Answers:
No answers yet
that script is located in the docker material you downloaded form the github. Since the first part of the path is usr/local/scripts I believe it may be your working directory. You need to run the build command and other commands from specific directories.
<CONTAINER_PATH>/jaspersoft-containers/Docker/jrs the build command is from this directory after setting up your .env and default_master.properties file correctly. the unpack command is run from the scripts directory...
Runcd <CONTAINER_PATH>/jaspersoft-containers/Docker/jrs/scripts
and then run./unpackWARInstaller.sh
. If your path is not resolving correctly per these steps you could symlink to the directory containing this script in the github material and folder structure and then run the build so that it finds the script correctly although I also used this material recently without issue. Thanks.I think you must be running docker desktop on windows.
Had this issue too, and solved it editing the files in scripts directory with notepad++ and transforming end of lines to unix stye.