Running a TIBCO BusinessEvents Application in Docker

By using the TIBCO BusinessEvents application Docker image, you can run the TIBCO BusinessEvents application in Docker.

Prerequisites

  • Build the BusinessEvents application Docker image. See Building BusinessEvents Application Docker Image.
  • (Linux containers only) Ensure that a network bridge exists for internal communication between Docker images. You can use the docker network create command to create the network bridge. For details about the command, see Docker Documentation.

Procedure

  • Execute the run command on the machine where you have created the application Docker image.
    docker run --net=<BRIDGE_NETWORK> -p <CONTAINER_PORT>:<HOST_PORT> -v <LOCAL_DIRECTORIES>:<CONTAINER_DIRECTORIES> -e <ENVIRONMENT_VARIABLES> <APPLICATION_IMAGE_NAME>:<IMAGE_VERSION>
    For details about the docker run command options, see Docker Run Command Reference.

Example

docker run -p 8110:8110 -e PU=default "HOSTNAME=localhost" httpapp