Add support for postgres

This commit is contained in:
benmag@users.noreply.github.com
2016-05-07 11:16:06 +10:00
parent daa5ed981f
commit 5d62ec1e67
2 changed files with 24 additions and 0 deletions

9
postgres/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM postgres:latest
MAINTAINER Ben M <git@bmagg.com>
VOLUME /var/lib/postgresql/data
CMD ["postgres"]
EXPOSE 5432