TIBCO EBX® Container Edition image is Linux based (amd64 architecture) and includes the following:
Application Server Apache Tomcat® 9.0
Java JDK 11
The image can be built on a workstation meeting following requirements:
Operating system: Windows 10, macOS or Linux,
Docker Desktop installed and running,
Access to Internet.
To build an EBX® image, one needs to download file TIB_ebx_6.0.6_addon_5.X.Y_container_edition.amd64.zip from TIBCO eDelivery.
To start installer on Linux or macOS:
Unzip the TIB_ebx_6.0.6_addon_5.X.Y_container_edition.amd64.zip,
Open a terminal in folder where file ebx-ce-installer.sh file is located,
Execute command ./ebx-ce-installer.sh.
To start installer on Windows 10:
Unzip the TIB_ebx_6.0.6_addon_5.X.Y_container_edition.amd64.zip,
Open a Windows PowerShell in folder where file ebx-ce-installer.bat file is located,
Execute command ebx-ce-installer.bat.
Follow instructions and select addons to be added to the image.
The installer will then build the image and print a summary similar to:
********************************************************************************************** The TIBCO EBX Container Edition image was successfully created with following names: ebx:latest ebx:6.0.6-mame-tese-dama-dmdv-5.X.Y This image includes the following addon(s): Match and Merge (MAME) Information Search (TESE) Digital Asset Manager (DAMA) Data Model and Data Visualization (DMDV) To run this image with the default configuration and an embedded database, use command: docker run -p 8080:8080 -d ebx:latest You can test EBX by visiting http://localhost:8080 in a browser. To run this image with other configurations, for example with an external database, see documentation. **********************************************************************************************
The image can be run locally using command:
docker run -p 8080:8080 -d ebx:latest
In production, it is recommended to not use tag latest. The installer will always generate another tag depending on selected addons.
If previous sample, the tag is 6.0.6-mame-tese-dama-dmdv-5.X.Y because the following addons where selected:
Match and Merge (MAME),
Information Search (TESE),
Digital Asset Manager (DAMA),
Data Model and Data Visualization (DMDV).
The image can then be run using command:
docker run -p 8080:8080 -d ebx:6.0.6-mame-tese-dama-dmdv-5.X.Y
If no addons are selected, the tag is 6.0.6
The image can be run using command:
docker run -p 8080:8080 -d ebx:6.0.6
The steps to share an image depends on customer’s company infrastructure.
In following example, the image is pushed to a Docker private registry named myregistry:
docker tag ebx:6.0.6 myregistry:5000/ebx:6.0.6 docker push myregistry:5000/ebx:6.0.6