1. 使用 Docker 安装 Kong
Posted leisurelylicht
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1. 使用 Docker 安装 Kong相关的知识,希望对你有一定的参考价值。
Create a Docker network
$ docker network create kong-net
Start Database
$ docker run -d --name kong-database --network=kong-net -p 5432:5432 -e "POSTGRES_USER=kong" -e "POSTGRES_DB=kong" postgres:9.6
Prepare Database
$ docker run --rm --network=kong-net -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" kong:0.14-centos kong migrations up
现在kong-dashbord只支持到0.14,所以我这里使用0.14的 Kong 镜像。
Start Kong
$ docker run -d --name kong --network=kong-net -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" -e "KONG_PROXY_ERROR_LOG=/dev/stderr" -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" -p 8000:8000 -p 8443:8443 -p 8001:8001 -p 8444:8444 kong:0.14-centos
Start Kong DashBord
$ docker run --rm -p 8080:8080 --network kong-net -d --name kong-dashboard pgbi/kong-dashboard start --kong-url http://kong:8001
Over
现在你应该能在系统中看到 Kong 的三个镜像了。
?
以上是关于1. 使用 Docker 安装 Kong的主要内容,如果未能解决你的问题,请参考以下文章