Tech Rescue
  • Home
  • Acronyms
  • Cheat-Sheets
  • User Manuals

Docker

Install and run Kong EE with PostgreSQL using Docker

1. Pull the Kong Gateway and PostgreSQL 9.6 Docker images sudo docker pull kong/kong-gateway sudo docker pull postgres:9.6 2. Create a Docker network sudo docker network create kong-ee-net 3. Start a database sudo docker run -d --name kong-ee-database \ --network=kong-ee-net \ -p 5522:5432 \ -e "POSTGRES_USER=
Hector Perez Feb 21, 2022

Install and run Konga GUI for Kong OSS with Docker

I assume that you have an instance of Kong already up and running in localhost and the Admin API is listening on port 8001. 1. Get the GUI container: sudo docker pull pantsel/konga 2. Start Kong Dashboard: sudo docker run -d --name konga-gui \ --network host \ -p 1337:1337 \ -e
Hector Perez Feb 21, 2022
Install and run Kong OSS with PostgreSQL using Docker

Install and run Kong OSS with PostgreSQL using Docker

1. Download Docker images: sudo docker pull kong sudo docker pull postgres:9.6 2. Start a PostgreSQL container by executing: sudo docker run -d --name kong-database \ -p 5432:5432 \ -e "POSTGRES_USER=kong" \ -e "POSTGRES_DB=kong" \ -e "POSTGRES_PASSWORD=kong" \ postgres:9.6 3. Run the database migrations
Hector Perez Feb 21, 2022

Install and run WSO2 4.0.0 API Manager with Docker

1. Pull docker images sudo docker pull wso2/wso2am:4.0.0 2. Run the API Manager sudo docker run -it -d -p 8280:8280 -p 8243:8243 -p 9443:9443 --name wso2-api-manager wso2/wso2am:4.0.0 3. Test if everything is OK curl http://run.mocky.io/v2/
Hector Perez Feb 14, 2022
Tech Rescue © 2025. Powered by Ghost