* feat: move to postgresql * fix: repair fractional replace statement * fix: use pathlib to manipulate settings_local Co-authored-by: Jennifer Richards <jennifer@painless-security.com> * fix: do two string replacements, not one followed by another that throws away the first. Co-authored-by: Jennifer Richards <jennifer@painless-security.com> * fix: use pathlib again to manipulate settings_local Co-authored-by: Jennifer Richards <jennifer@painless-security.com> * fix: properly use assert (1/2) Co-authored-by: Jennifer Richards <jennifer@painless-security.com> * fix: properly use assert (2/2) Co-authored-by: Jennifer Richards <jennifer@painless-security.com> Co-authored-by: Jennifer Richards <jennifer@painless-security.com>
20 lines
618 B
Docker
20 lines
618 B
Docker
FROM postgres:14.5
|
|
LABEL maintainer="IETF Tools Team <tools-discuss@ietf.org>"
|
|
|
|
#RUN apt-get update \
|
|
# && apt-get install -y --no-install-recommends \
|
|
# postgresql-14-pg-catcheck \
|
|
# postgresql-14-powa \
|
|
# postgresql-14-pg-qualstats \
|
|
# postgresql-14-pg-stat-kcache \
|
|
# postgresql-14-pg-stat-monitor \
|
|
# postgresql-14-pg-top \
|
|
# postgresql-14-pg-track_settings \
|
|
# postgresql-14-pg-wait_sampling \
|
|
# pgsql_tweaks
|
|
|
|
ENV POSTGRES_PASSWORD=hk2j22sfiv
|
|
ENV POSTGRES_HOST_AUTH_METHOD=trust
|
|
|
|
COPY docker/scripts/pgdb-ietf-init.sh /docker-entrypoint-initdb.d/
|