Please note that we have now released IBM App Connect Enterprise v11, which you can find at ot4i/ace-docker
This repository contains a Dockerfile and some scripts which demonstrate a way in which you might run IBM Integration Bus in a Docker container.
This repository also contains a Dockerfile and some scripts which demonstrate a way in which you might run IBM Integration Bus with an [IBM MQ] Server(http://www-03.ibm.com/software/products/en/ibm-mq).
IBM would welcome feedback on what is offered here.
A pre-built version of the stand-alone IIB image is available on Docker Hub as ibmcom/iib
with the following tags:
10.0.0.11
,latest
(Dockerfile)10.0.0.10
(Dockerfile)
A pre-built version of the IIB with MQ Server image is available on Docker Hub as ibmcom/iib-mq-server
with the following tags:
10.0.0.11
,latest
(Dockerfile)
The image can be built using standard Docker commands against the supplied Dockerfile. For example:
cd 10.0.0.11/iib
docker build -t iibv10image .
This will create an image called iibv10image
occupying approximately 1.15GB of space (including the size of the underlying Ubuntu base image) in your local Docker registry:
REPOSITORY TAG IMAGE ID CREATED SIZE
iibv10image latest b8403ecfcd0d 2 seconds ago 1.15GB
ubuntu 14.04 132b7427a3b4 3 weeks ago 188MB
If you wish to build the image with an MQ install, then run something like the following:
cd 10.0.0.11/iib-mq-server
docker build -t iib-mq-image .
The built image contains a full runtime installation of IBM Integration Bus for Developers Edition V10.0. If you wish to include the toolkit in your installation then you should build your own version of our Dockerfile but with the --exclude iib-10.0.0.11/tools
part of the tar command removed.
If you install the stand-alone image, which does not contain an installation of IBM MQ, some functionality may not be available, or may be changed - see this topic for more information.
After building a Docker image from the supplied files, you can run a container which will create and start an Integration Node to which you can deploy integration solutions.
In order to run a container from this image, it is necessary to accept the terms of the IBM Integration Bus for Developers license. This is achieved by specifying the environment variable LICENSE
equal to accept
when running the image. You can also view the license terms by setting this variable to view
. Failure to set the variable will result in the termination of the container with a usage statement. You can view the license in a different language by also setting the LANG
environment variable.
In addition to accepting the license, you can optionally specify an Integration Node name using the NODENAME
environment variable and an Integration Server name using the SERVERNAME
environment variable. If using the image with MQ, you can also specify a Queue Manager name using the MQ_QMGR_NAME
environment variable.
The last important point of configuration when running a container from this image, is port mapping. The Dockerfile exposes ports 4414
and 7800
by default, for Integration Node administration and Integration Server HTTP traffic respectively. This means you can run with the -P
flag to auto map these ports to ports on your host. Alternatively you can use -p
to expose and map any ports of your choice. The same applies to the image with MQ where the additional port exposed by default is 1414
for the MQ listener.
For example:
docker run --name myNode -e LICENSE=accept -e NODENAME=MYNODE -e SERVERNAME=MYSERVER -P iibv10image
If you wish, you can also deploy an IBM Integration Bus BAR file by specifying a Docker volume which makes the BAR file(s) available when the container is started:
docker run --name myNode -v /local/path/to/BARs:/tmp/BARs/<yourbars> -e LICENSE=accept -e NODENAME=MYNODE -e SERVERNAME=MYSERVER -P iibv10image
This will run a container that creates and starts an Integration Node called MYNODE
and exposes ports 4414
and 7800
on random ports on the host machine. At this point you can use:
docker port <container name>
to see which ports have been mapped then connect to the Node's web user interface as normal (see [verification](# Verifying your container is running correctly) section below).
The above example will not persist any configuration data or messages across container runs. In order to do this, you need to use a volume. For example, you can create a volume with the following command:
docker volume create qm1data
You can then run a queue manager using this volume as follows:
docker run --name myNode -e LICENSE=accept -e NODENAME=MYNODE -e SERVERNAME=MYSERVER -e MQ_QMGR_NAME=QM1 -v qm1data:/mnt/mqm -P iibv10image
The Docker image always uses /mnt/mqm
for MQ data, which is correctly linked for you under /var/mqm
at runtime. This is to handle problems with file permissions on some platforms.
You can customize the configuration in several ways:
- By creating your own image and adding your own MQSC file into the
/etc/mqm
directory on the image. This file will be run when your queue manager is created. - By using remote MQ administration, via an MQ command server, the MQ HTTP APIs, or using a tool such as the MQ web console or MQ Explorer.
Note that a listener is always created on port 1414 inside the container. This port can be mapped to any port on the Docker host.
You can run any of the Integration Bus commands using one of two methods:
Attach a bash session to your container and execute your commands as you would normally:
docker exec -it <container name> /bin/bash
At this point you will be in a shell inside the container and can source mqsiprofile
and run your commands.
Use Docker exec to run a non-interactive Bash session that runs any of the Integration Bus commands. For example:
docker exec <container name> /bin/bash -c mqsilist
It is recommended that you configure MQ in your own custom image. However, you may need to run MQ commands directly inside the process space of the container. To run a command against a running queue manager, you can use docker exec
, for example:
docker exec -it <container name> dspmq
Using this technique, you can have full control over all aspects of the MQ installation. Note that if you use this technique to make changes to the filesystem, then those changes would be lost if you re-created your container unless you make those changes in volumes.
This image also configures syslog, so when you run a container, your node will be outputting messages to /var/log/syslog inside the container. You can access this by attaching a bash session as described above or by using docker exec. For example:
docker exec <container id> tail -f /var/log/syslog
Whether you are using the image as provided or if you have customised it, here are a few basic steps that will give you confidence your image has been created properly:
- Run a container, making sure to expose port 4414 to the host - the container should start without error
- Run mqsilist to show the status of your node as described above - your node should be listed as running
- Access syslog as descried above - there should be no errors
- Connect a browser to your host on the port you exposed in step 1 - the Integration Bus web user interface should be displayed.
At this point, your container is running and you can deploy integration solutions to it using any of the supported methods.
- LICENSE - Set this to
accept
to agree to the MQ Advanced for Developers license. If you wish to see the license you can set this toview
. - LANG - Set this to the language you would like the license to be printed in.
- NODENAME - Set this to the name you want your Integration Node to be created with.
- SERVERNAME - Set this to the name you want your Integration Server to be created with.
- MQ_QMGR_NAME - Set this to the name you want your Queue Manager to be created with.
- MQ_APP_PASSWORD - Changes the password of the app user. If set, this will cause the
IIB.SVRCONN
channel to become secured and only allow connections that supply a valid userid and password. Must be at least 8 characters long.
For issues relating specifically to this Docker image, please use the GitHub issue tracker. For more general issues relating to IBM Integration Bus or to discuss the Docker technical preview, please use the Integration Community. If you do submit a Pull Request related to this Docker image, please indicate in the Pull Request that you accept and agree to be bound by the terms of the IBM Contributor License Agreement.
The Dockerfile and associated scripts are licensed under the Eclipse Public License 1.0. Licenses for the products installed within the images are as follows:
- IBM Integration Bus for Developers is licensed under the IBM International License Agreement for Non-Warranted Programs. This license may be viewed from the image using the
LICENSE=view
environment variable as described above. - IBM MQ Advanced for Developers is licensed under the IBM International License Agreement for Non-Warranted Programs. This license may be viewed from the image using the
LICENSE=view
environment variable as described above. - License information for Ubuntu packages may be found in
/usr/share/doc/${package}/copyright
Note that the IBM Integration Bus for Developers license does not permit further distribution. The IBM MQ Advanced for Developers license does not permit further distribution and the terms restrict usage to a developer machine.