cyberark / conjur-quickstart

Start securing your secrets and infrastructure by installing Conjur, using Docker and the official Conjur containers on DockerHub.
Apache License 2.0
33 stars 36 forks source link

Added a fix for the updated PG 9.4 container image #12

Closed sgnn7 closed 4 years ago

sgnn7 commented 4 years ago

Postgres introduced a change that you can't start a pg container without setting a password. They also introduced a new flag named POSTGRES_HOST_AUTH_METHOD that you can set to trust in order to let anyone connect with the db without a password (as we do today). This is ok for our ci and dev envs so this commit adds this env var to all pg containers that didn't have a password set for them.

Connected to #10