version: '3.7'services: kong-database: image: postgres:13 container_name: kong-database environment: POSTGRES_USER: kong POSTGRES_DB: kong POSTGRES_PASSWORD: kong ports: - "5432:5432" kong: image: kong:latest container_name: kong restart: always environment: KONG_DATABASE: postgres KONG_PG_HOST: kong-database KONG_PG_USER: kong KO..