Abdullah Alsowaygh
Abdullah Alsowaygh

Reputation: 43

How can I combine images into one container in Docker (as IIB is dependent on MQ)?

I am new to docker, and as I am trying to configure an IBM integration environment using docker. I have used docker pull command to install two different images, one is the IBM Integration Bus (IIB) and the other is IBM Message Queueing (MQ). Then I ran each of the images in separate containers using docker run command.

The problem is, IIB is depending on MQ for its broker creation. I created the queue manager in the MQ container, and then created a broker in the iib container. I need a way to link the broker contianer with queue manager container, or combine them if possible.

https://developer.ibm.com/messaging/learn-mq/mq-tutorials/mq-connect-to-queue-manager/#docker

https://hub.docker.com/r/ibmcom/iib/

Can someone help and provide instructions?

Upvotes: 0

Views: 540

Answers (1)

Daniel Steinmann
Daniel Steinmann

Reputation: 2199

If you can work with the latest IIB version, now called ACE, look at these images.

Upvotes: 2

Related Questions