first commit
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
2020-11-22 18:06:09 -03:00
commit 21ac76d801
4 changed files with 161 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
ARG PG_TAG=latest
FROM postgres:${PG_TAG}
LABEL description="PostgreSQL with non-superuser db user."
COPY custom-entrypoint.sh /usr/local/bin/
ENTRYPOINT ["custom-entrypoint.sh"]
STOPSIGNAL SIGINT
EXPOSE 5432
CMD ["postgres"]