Next Steps

Customizing your Trust1Gateway Container

Both the Kong Gateway as the Trust1Gateway Engine provide support for customization, such as adding custom plugins.

In order to customize your Trust1Gateway, log in to the container by executing the command below:

docker exec -u 0 -it t1g-ui /bin/bash

Return to this page in the future for a more comprehensive guide on adding custom plugins to the Trust1Gateway.

Add your Own API's

The Trust1Gateway Engine runs on a JBOSS Wildfly Application Server and makes use of a PostgreSQL database. If you wish you can add your own Java API's to the application server.

To do so, log in to the container with the

docker exec -u 0 -it t1g-ui /bin/bash

command and add your EAR/WAR/JAR package to the /opt/wildfly/standalone/deployments folder. You can also configure your own datasources in the /opt/wildfly/standalone/configuration/standalone.xml file, and access the PostgreSQL server at

  • URI: localhost:5433

  • Username: postgres

  • Password: postgres

Last updated