postgresql: Add PostgreSQL container instructions (Dockerfile and README)
authorW. Trevor King <wking@tremily.us>
Fri, 13 Dec 2013 00:08:48 +0000 (16:08 -0800)
committerW. Trevor King <wking@tremily.us>
Sun, 29 Dec 2013 17:44:31 +0000 (09:44 -0800)
commit15d12844946d27dec68387f6279231867b5e9a2d
tree162f1d457a9d9294105478267d28f3c0998687b8
parent5b43ad920f63b8cda768a4d31798084a69c08a63
postgresql: Add PostgreSQL container instructions (Dockerfile and README)

The $(echo /etc/postgresql*/postgresql.conf) crazyness in the
Dockerfile is because Docker chokes on:

  RUN echo host  all  all  0.0.0.0/0  trust >> /etc/postgresql*/pg_hba.conf

raising:

  /bin/sh: /etc/postgresql*/pg_hba.conf: No such file or directory

I'm not sure why it's not expanding the glob.  Perhaps Docker is
quoting redirection targets?  In any case, the $(echo ...) form works,
so that's what I'm going with for now.
README.md
build.sh
postgresql/Dockerfile.template [new file with mode: 0644]
postgresql/README.md [new file with mode: 0644]