Mauro Torrez 21ac76d801
All checks were successful
continuous-integration/drone/tag Build is passing
first commit
2020-11-22 18:06:09 -03:00

10 lines
227 B
Docker

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"]