
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