Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 848
Arunkumar Pushparaj Avatar asked Sep 13 '25 06:09

Arunkumar Pushparaj


1 Answers

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

like image 192
Anouar BAKRI Avatar answered Sep 17 '25 11:09

Anouar BAKRI