basic docker-compose cluster

This commit is contained in:
flourgaz 2018-09-26 09:46:08 +02:00
parent 29a6291957
commit 71a99542fe
5 changed files with 67 additions and 1 deletions

View file

@ -0,0 +1,10 @@
FROM postgres:10
ENV POSTGRES_USER postgres
ADD ./setup.sh /setup.sh
ADD ./config/sql /config/sql
ADD ./docker/entrypoint.postgres.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
CMD [ "postgres" ]