From 9713b930455c86ea3f0c318bddc2a15eb6ffcffe Mon Sep 17 00:00:00 2001 From: thefosk Date: Thu, 15 Sep 2016 18:36:14 -0700 Subject: [PATCH] Update Kong documentation --- kong/README.md | 4 +++- kong/content.md | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/kong/README.md b/kong/README.md index 819998180..45cb7d6e0 100644 --- a/kong/README.md +++ b/kong/README.md @@ -52,8 +52,10 @@ Once the database is running, we can start a Kong container and link it to the d ```shell $ docker run -d --name kong \ - -e "KONG_DATABASE=cassandra" \ --link kong-database:kong-database \ + -e "KONG_DATABASE=cassandra" \ + -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \ + -e "KONG_PG_HOST=kong-database" \ -p 8000:8000 \ -p 8443:8443 \ -p 8001:8001 \ diff --git a/kong/content.md b/kong/content.md index 8a5a12dce..f2598171c 100644 --- a/kong/content.md +++ b/kong/content.md @@ -44,8 +44,10 @@ Once the database is running, we can start a Kong container and link it to the d ```shell $ docker run -d --name kong \ - -e "KONG_DATABASE=cassandra" \ --link kong-database:kong-database \ + -e "KONG_DATABASE=cassandra" \ + -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \ + -e "KONG_PG_HOST=kong-database" \ -p 8000:8000 \ -p 8443:8443 \ -p 8001:8001 \