Skip to content

Building TIBCO BusinessEvents Enterprise Administrator Agent

nthota edited this page Jun 3, 2021 · 1 revision

TIBCO BusinessEvents provides build_image script file to build TIBCO BusinessEvents Enterprise Administrator Agent container image by using bundled Dockerfiles.

Prerequisites

Procedure

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

Syntax:

build_image -i teagent \
-s <installers-directory/BE_HOME_location> \
-t <teagent-image-name>:<teagent-image-version> \
-d <Dockerfile> \
-b <name-of-build-tool>
  • Container Image by Using Software Installers

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

    Example Using Docker:

    ./build_image.sh -i teagent \
    -s /home/user/tibco/installers \
    -t teagent:01
    

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

    Example Using Buildah:

    ./build_image.sh -i teagent \
    -s /home/user/tibco/installers \
    -t teagent:01 \
    -b buildah
    
  • (Linux Only) Container Image by Using Existing TIBCO BusinessEvents Installation

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

    Example Using Docker:

    ./build_image.sh -i teagent \
    -s /home/user/tibco/be/5.6 \
    -t teagent:01
    

    Example Using Buildah:

    ./build_image.sh -i teagent \
    -s /home/user/tibco/be/5.6 \
    -t teagent:01 \
    -b buildah
    

Next Topic: Running TIBCO BusinessEvents

Parent Topic: Building TIBCO BusinessEvents

Clone this wiki locally