Arunkumar Pushparaj
Arunkumar Pushparaj

Reputation: 356

Is there any portable TIBCO EMS available for testing?

I am a newbie to the messaging system. I have tried the ActiveMQ portable version. That is perfect. As I don't have admin rights in my machine. I need to install portable TIBCO EMS. Is there any possibility.?

Thanks in Advance.

Upvotes: 4

Views: 1634

Answers (1)

Anouar BAKRI
Anouar BAKRI

Reputation: 335

Yes you can use docker for that, all you need is downloading tibco ems trial version as a zip and using this project https://github.com/mikeschippers/docker-tibco

you can easily deploy ems in a docker container.

first you build the tibbase:1.0.0 using docker build -t="tibbase:1.0.0" .\tibbase\ after that you build ems image using docker build -t="tibems:8.3.0" .\tibems\. make sure zip file is in the same folder as your dockerfile

after building images

you run container using docker run -p 7222:7222 tibems:8.3.0

all details is here mikeschippers/docker-tibco

Upvotes: 4

Related Questions