1:docker安裝遵循官方手冊git
2:安裝konggithub
參考文檔:https://getkong.org/install/docker/ docker
安裝過程基本和文檔一致,文檔十分簡單清晰。數據庫
但應注意,爲了最新版kong-dashboard,使用的kong鏡像爲 0.12版本。post
不然kong-dashboard不支持。url
注意:本文檔使用postgres數據庫spa
2.1 安裝postgrescode
docker run -d --name kong-database -p 5432:5432 -e "POSTGRES_USER=kong" -e "POSTGRES_DB=kong" postgresserver
2.2 文檔
docker run --rm --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" kong:0.12 kong migrations up
若是使用的cassandra,KONG_DATABASE屬性對應修改成cassandra就能夠了。
2.3
docker run -d --name kong \
--link kong-database:kong-database \
-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" \
-e "KONG_ADMIN_LISTEN_SSL=0.0.0.0:8444" \
-p 8000:8000 \
-p 8443:8443 \
-p 8001:8001 \
-p 8444:8444 \
kong:0.12
3: 添加kong-dashboard
參考文檔:https://github.com/PGBI/kong-dashboard
注意:kong-dashboard應該使用最新版,舊版本(如v2)有bug,訪問kong server一直報錯。
# Start Kong Dashboard docker run --rm -p 8080:8080 pgbi/kong-dashboard start --kong-url http://kong:8001 # Start Kong Dashboard on a custom port docker run --rm -p [port]:8080 pgbi/kong-dashboard start --kong-url http://kong:8001 # Start Kong Dashboard with basic auth docker run --rm -p 8080:8080 pgbi/kong-dashboard start \ --kong-url http://kong:8001 --basic-auth user1=password1 user2=password2 # See full list of start options docker run --rm -p 8080:8080 pgbi/kong-dashboard start --help
以上。