Summary

A summary of the most relevant information regarding the Trust1Gateway Docker Container

Getting it up and running

Installation

docker pull trust1team/trust1gateway-with-ui
docker run -dit -p 127.0.0.1:5433:5432 -p 127.0.0.1:8443:8443 -p 127.0.0.1:8000:8000 -p 127.0.0.1:8001:8001 -p 127.0.0.1:28080:28080 -p 127.0.0.1:28443:28443 -p 127.0.0.1:29990:29990 -p 127.0.0.1:29993:29993 -p 127.0.0.1:3000:3000 -p 127.0.0.1:3003:3003 --name t1g-ui trust1team/trust1gateway-with-ui

Start/Stop

docker start t1g-ui
docker stop t1g-ui

Removal

docker rm t1g-ui
docker rmi trust1team/trust1gatewa-with-ui

URL

The following URL are available:

  1. The Keycloak IDP: http://localhost:28080/auth

  2. The Kong Gateway: http://localhost:8000

  3. The Kong admin API: http://localhost:8001

  4. The Trust1Gateway Web Swagger Documentation: http://localhost:28080/t1g-web

  5. The Trust1Gateway Auth Swagger Documentation: http://localhost:28080/t1g-auth

  6. The Trust1Gateway Web API: http://localhost:8000/apiengine/v1

  7. The Trust1Gateway Auth API: http://localhost:8000/apiengineauth/v1

  8. The Marketplace UI: http://localhost:3000

  9. The Publisher UI: http://localhost:3003

  10. The PostgreSQL Server: localhost:5433

Credentials

Keycloak (Master Realm)

  • Username: kc-admin

  • Password: admin

Trust1Gateway Marketplace & Publisher

  • Username: t1g-admin

  • Password: admin

PostgreSQL Server

  • Username: postgres

  • Password: postgres

Last updated