Skip to content

Commit

Permalink
fix(postgres) postgres requires a password now (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
hutchic authored Feb 18, 2020
1 parent 3331984 commit 698bfd9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ services:
KONG_DATABASE: ${TEST_DATABASE:-postgres}
KONG_TEST_DATABASE: ${TEST_DATABASE:-postgres}
KONG_PG_DATABASE: ${KONG_PG_DATABASE:-kong_tests}
KONG_PG_PASSWORD: ${KONG_PG_PASSWORD:-kongpassword}
KONG_TEST_PG_DATABASE: ${KONG_PG_DATABASE:-kong_tests}
KONG_TEST_PG_PASSWORD: ${KONG_PG_PASSWORD:-kongpassword}
KONG_CASSANDRA_CONTACT_POINTS: 127.0.0.1
KONG_TEST_CASSANDRA_CONTACT_POINTS: 127.0.0.1
KONG_PG_HOST: 127.0.0.1
Expand Down Expand Up @@ -66,6 +68,7 @@ services:
environment:
POSTGRES_DB: ${KONG_PG_DATABASE:-kong_tests}
POSTGRES_USER: ${KONG_PG_USER:-kong}
POSTGRES_PASSWORD: ${KONG_PG_PASSWORD:-kongpassword}
ports:
- '5432:5432'
expose:
Expand Down

0 comments on commit 698bfd9

Please sign in to comment.