Mercurial > dive4elements > river
comparison docker/Dockerfile.db @ 9737:0c4736d5dd4a 3.2.x
Do not expose ports that are not meant to be published
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Mon, 25 Jul 2022 12:31:08 +0200 |
parents | 95496d21b4da |
children | f98e5c7775d2 |
comparison
equal
deleted
inserted
replaced
9736:492f8e615c38 | 9737:0c4736d5dd4a |
---|---|
40 /etc/postgresql/$PG_VERSION/main/pg_hba.conf | 40 /etc/postgresql/$PG_VERSION/main/pg_hba.conf |
41 | 41 |
42 RUN echo "listen_addresses='*'" >> $PGCONF | 42 RUN echo "listen_addresses='*'" >> $PGCONF |
43 | 43 |
44 # | 44 # |
45 # Expose the PostgreSQL port | |
46 # | |
47 EXPOSE 5432 | |
48 | |
49 # | |
50 # Create database | 45 # Create database |
51 # | 46 # |
52 # Don't mind scary messages like | 47 # Don't mind scary messages like |
53 # 'FATAL: the database system is starting up'. | 48 # 'FATAL: the database system is starting up'. |
54 # It's because of the -w | 49 # It's because of the -w |