Skip to content

Building RMS

nthota edited this page Jun 3, 2021 · 1 revision

TIBCO BusinessEvents provides build_image script file to build the RMS Container image by using bundled Dockerfiles. You can build the Container image either by using existing TIBCO BusinessEvents installation (BE_HOME) from your computer or by using the software installer of TIBCO BusinessEvents and other required products.

Prerequisites

Procedure

Go to the BE_HOME/cloud/docker folder and run the build_image script.

Syntax:

build_image -i rms \
-s <installers-directory/BE_HOME_location> \
-a <rms-artifact-directory> \
-t <rms-image-name>:<rms-image-version> \
-d <Dockerfile> \
-b <name-of-build-tool>

Note: If you have your own RMS EAR, CDD and any 3rd Party JAR files, place them to a folder that will be referenced as the rms-artifact-directory value. If you didn't use -a then default RMS.cdd and RMS.ear is used.

  • RMS Container Image by Using Software Installers

    The source type should be installers directory location to build rms image using the installers.

    Example Using Docker

    ./build_image.sh -i rms \
    -s /home/user/tibco/installers
    

    Example Using Buildah

    ./build_image.sh -i rms \
    -s /home/user/tibco/installers \
    -b buildah
    
  • (Windows and Linux Only) RMS Container Image by Using Existing TIBCO BusinessEvents Installation

    The source type should be BE_HOME location to build rms image from the installation.

    Example Using Docker

    ./build_image.sh -i rms \
    -s /home/user/tibco/be/5.6
    

    Note: For the Windows platform, use build_image.bat script and enclose all arguments in double quotes (").

    Example Using Buildah(Linux Only)

    ./build_image.sh -i rms \
    -s /home/user/tibco/be/5.6 \
    -b buildah
    

Next Topic: Running TIBCO BusinessEvents RMS

Parent Topic: Building TIBCO BusinessEvents

Clone this wiki locally