This commit is contained in:
9
Dockerfile
Normal file
9
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user