commit | bf484a689ecd5edaa748e9c7078d374b01f5362b | [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 | aeefc6698286c90583d9321dd59cad2fc213b8ce [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