Skip to content

Latest commit

 

History

History
 
 

entirex-broker

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

EntireX Broker

Building container image

cd <home>/sagdevops-templates/containers
docker-compose build entirex-broker

Running container image

Configuring during Image Start, using Default File Names

Provide your configuration files with the default file names, for example:

<my-license-dir>/license.xml	(required)
<my-config-dir>/etbfile		(optional)
<my-config-dir>/exxAppCert.pem	(optional)
<my-config-dir>/exxAppKey.pem	(optional)
<my-config-dir>/exxCACert.pem	(optional)
cd <home>/sagdevops-templates/containers>
docker run -d -p 2001:1971 
	-v <my-license-dir>:/licenses 
	-v <my-config-dir>:/configs softwareag/entirex-broker:10.3

Configuring during Image Start, using Custom File Names

Provide your configuration files with the default file names, for example:

<my-license-dir>/myLicense.xml		(required)
<my-config-dir>/myEtbfile		(optional)
<my-config-dir>/myExxAppCert.pem	(optional)
<my-config-dir>/myExxAppKey.pem		(optional)
<my-config-dir>/myExxCACert.pem		(optional)
cd <home>/sagdevops-templates/containers>
docker run -d -p 2001:1971 
	-e "EXX_ATTRIBUTE=myEtbfile" 
	-e "EXX_LICENSE_KEY=myLicense.xml" 
	-e "EXX_KEY_FILE=myExxAppKey.pem" 
	-e "EXX_KEY_STORE=myExxAppCert.pem" 
	-e "EXX_TRUST_STORE=myExxCACert.pem" 
	-v <my-license-dir>:/licenses 
	-v <my-config-dir>:/configs softwareag/entirex-broker:10.3