Kong

The World’s Most Popular Open Source Microservice API Gateway and Platform.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '2'
 
services:
  kong:
    build: .
    ports:
      - '80:8080'
      - '443:8443'
    volumes:
      - ./config/kong.conf:/opt/bitnami/kong/conf/kong.conf
    environment:
      # Assume we don't want data persistence for simplicity purposes
      - KONG_DATABASE=off
volumes:
  data:
    driver: local

Resources

Website: https://konghq.com/products/kong-gateway

GitHub: https://github.com/Kong/kong

Docker Hub (Bitnami): https://hub.docker.com/r/bitnami/kong

Configuration: See the Docker Hub page