commit | 0bce8fa63ce863e745037ce091e7e6634ad1f296 | [log] [tgz] |
---|---|---|
author | Tony Mack <tony.mack@gmail.com> | Fri Oct 30 21:51:04 2015 +0000 |
committer | Tony Mack <tony.mack@gmail.com> | Fri Oct 30 21:51:04 2015 +0000 |
tree | a52c65ddeb30fd08e2656315dc25e09465810c81 | |
parent | f4f7fc89138e008d29ceb3a1952567ae3911dfe2 [diff] [blame] |
enable password auth
diff --git a/containers/postgresql/Dockerfile b/containers/postgresql/Dockerfile index bd9943a..0f5c6ef 100644 --- a/containers/postgresql/Dockerfile +++ b/containers/postgresql/Dockerfile
@@ -22,6 +22,7 @@ # Allow remote connections. RUN echo "host all all 0.0.0.0/0 md5" >> /etc/postgresql/9.3/main/pg_hba.conf +RUN echo "host all all 0.0.0.0/0 password" >> /etc/postgresql/9.3/main/pg_hba.conf RUN echo "listen_addresses='*'" >> /etc/postgresql/9.3/main/postgresql.conf