Skip to content

Running TIBCO BusinessEvents RMS

ykalidin edited this page Aug 29, 2025 · 2 revisions

By using the TIBCO BusinessEvents Container Image, you can run it in Docker or Podman.

Prerequisites

Procedure

Execute the run command on the machine where you have created the container image.

Syntax Using Docker:

docker run --net=<NETWORK_NAME> \
-p <CONTAINER_PORT>:<HOST_PORT> \
-v <LOCAL_DIRECTORIES>:<CONTAINER_DIRECTORIES> \
-e tra.java.property.TIB_ACTIVATION=https://<license-service-url> \
-e <ENVIRONMENT_VARIABLES> \
<IMAGE_NAME>:<IMAGE_VERSION>

Syntax Using Podman:

podman run --net=<NETWORK_NAME> \
-p <CONTAINER_PORT>:<HOST_PORT> \
-v <LOCAL_DIRECTORIES>:<CONTAINER_DIRECTORIES> \
-e tra.java.property.TIB_ACTIVATION=https://<license-service-url> \
-e <ENVIRONMENT_VARIABLES> \
<IMAGE_NAME>:<IMAGE_VERSION>

Example

docker run -p 8109:8109 -e PU=default "HOSTNAME=localhost" -e tra.java.property.TIB_ACTIVATION=https://<license-service-url> rms:5.6.0 

Parent topic: Running TIBCO BusinessEvents

Clone this wiki locally