Last active
October 18, 2017 04:34
-
-
Save jyungtong/6f8a2169dc6219076f007a23ed1cdace to your computer and use it in GitHub Desktop.
kong api gateway
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
kong-db: | |
image: postgres:latest | |
environment: | |
- POSTGRES_USER=kong | |
- POSTGRES_DB=kong | |
volumes: | |
- ./kong-data:/var/lib/postgresql/data | |
ports: | |
- 5432:5432 | |
restart: always | |
kong: | |
image: kong:latest | |
environment: | |
- KONG_DATABASE=postgres | |
- KONG_PG_HOST=kong-db | |
- KONG_PROXY_ACCESS_LOG=/dev/stdout | |
- KONG_ADMIN_ACCESS_LOG=/dev/stdout | |
- KONG_PROXY_ERROR_LOG=/dev/stderr | |
- KONG_ADMIN_ERROR_LOG=/dev/stderr | |
ports: | |
- 80:8000 | |
- 443:8443 | |
- 8001:8001 | |
- 8444:8444 | |
depends_on: | |
- kong-db | |
restart: always | |
konga: | |
image: pantsel/konga:latest | |
environment: | |
- NODE_ENV=production | |
ports: | |
- 1337:1337 | |
depends_on: | |
- kong | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment