2018-10-18 05:03:28 +02:00
|
|
|
FROM photon:2.0
|
2016-02-01 12:59:10 +01:00
|
|
|
|
2018-06-01 08:58:43 +02:00
|
|
|
ENV PGDATA /var/lib/postgresql/data
|
|
|
|
|
2018-10-18 05:03:28 +02:00
|
|
|
RUN tdnf install -y shadow gzip postgresql >> /dev/null\
|
2018-06-01 08:58:43 +02:00
|
|
|
&& groupadd -r postgres --gid=999 \
|
2018-10-18 05:03:28 +02:00
|
|
|
&& useradd -m -r -g postgres --uid=999 postgres \
|
2018-06-01 08:58:43 +02:00
|
|
|
&& mkdir -p /docker-entrypoint-initdb.d \
|
|
|
|
&& mkdir -p /run/postgresql \
|
|
|
|
&& chown -R postgres:postgres /run/postgresql \
|
|
|
|
&& chmod 2777 /run/postgresql \
|
|
|
|
&& mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" \
|
|
|
|
&& sed -i "s|#listen_addresses = 'localhost'.*|listen_addresses = '*'|g" /usr/share/postgresql/postgresql.conf.sample \
|
|
|
|
&& sed -i "s|#unix_socket_directories = '/tmp'.*|unix_socket_directories = '/run/postgresql'|g" /usr/share/postgresql/postgresql.conf.sample \
|
|
|
|
&& tdnf clean all
|
|
|
|
|
2019-03-15 03:52:47 +01:00
|
|
|
RUN tdnf erase -y toybox && tdnf install -y util-linux net-tools
|
2018-11-06 06:08:58 +01:00
|
|
|
|
2018-06-01 08:58:43 +02:00
|
|
|
VOLUME /var/lib/postgresql/data
|
|
|
|
|
2019-08-01 10:02:08 +02:00
|
|
|
COPY ./make/photon/db/docker-entrypoint.sh /docker-entrypoint.sh
|
2019-07-30 07:04:28 +02:00
|
|
|
COPY ./make/photon/db/docker-healthcheck.sh /docker-healthcheck.sh
|
2018-09-03 11:40:26 +02:00
|
|
|
COPY ./make/photon/db/initial-notaryserver.sql /docker-entrypoint-initdb.d/
|
|
|
|
COPY ./make/photon/db/initial-notarysigner.sql /docker-entrypoint-initdb.d/
|
|
|
|
COPY ./make/photon/db/initial-registry.sql /docker-entrypoint-initdb.d/
|
2019-08-01 10:02:08 +02:00
|
|
|
RUN chown -R postgres:postgres /docker-entrypoint.sh /docker-healthcheck.sh /docker-entrypoint-initdb.d \
|
|
|
|
&& chmod u+x /docker-entrypoint.sh /docker-healthcheck.sh
|
2019-07-30 07:04:28 +02:00
|
|
|
|
2019-08-01 10:02:08 +02:00
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
2019-07-30 07:04:28 +02:00
|
|
|
HEALTHCHECK CMD ["/docker-healthcheck.sh"]
|
2018-06-01 08:58:43 +02:00
|
|
|
|
|
|
|
EXPOSE 5432
|
2019-07-30 07:04:28 +02:00
|
|
|
USER postgres
|