Namespace
nextcloud
Image / Tag
aio-postgresql:20230511_075831-latest-arm64
Content Digest
sha256:cce9c86874d83e5eebfbb843828dd5b4a82701c90aaaa80b506497c05cd923b8
Details
Created

2023-05-04 14:21:38 UTC

Size

91.2 MB

Content Digest
Labels
  • com.centurylinklabs.watchtower.monitor-only
    true

Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

15

PG_SHA256

99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

PG_VERSION

15.2


Layers

[#000] sha256:f56be85fc22e46face30e2c3de3f7fe7c15f8fd7c4e5add29d7f64b87abdaa09 - 3.53% (3.22 MB)

[#001] sha256:256414453fba6e3cc9af34383da6e5920f6d4ac3399943b8569b68896c645a0e - 0.0% (1.26 KB)

[#002] sha256:f71699d7795ac5159478a278ffb6af3fcac0141e6a637d71062a601d7cab30c7 - 0.0% (147 Bytes)

[#003] sha256:8eff49387ec9a1f26ada557b4e31f86a45f70ef57c1a45345e5bfbe75e53bcfc - 94.84% (86.5 MB)

[#004] sha256:7da7fae4e80a5e292219502d2ce432382a68e8d0fb3841807ad70963ec194e7d - 0.01% (9.23 KB)

[#005] sha256:f33740282c0040003ee1e3c9ec1a68d5eb873795badbbf6103c79cc588760e4a - 0.0% (162 Bytes)

[#006] sha256:b49740a115f2f98ff2414fb5272986655b272d739c878477a6ca541430a41637 - 0.0% (193 Bytes)

[#007] sha256:c36da779701e31511df27033e2a5e1b1ebdd0b7f4032cfab4a04c82139d7337a - 0.01% (4.68 KB)

[#008] sha256:80b3ebc1d94749b8304781634b5660604dc3acbf3c14cb108ff364029ef07f6a - 1.61% (1.47 MB)

[#009] sha256:a5ad923bbb2998c43ebc0d1661e7fddc04b658cc66142ce9312a0ace3ea5d029 - 0.0% (1.17 KB)

[#010] sha256:dcd05fbc74f6d2588403add3bfd9b6c3685b4fa1505b316b3aed84b16ea15f8a - 0.0% (213 Bytes)

[#011] sha256:5996cc4246fab5d6ebc8658541106d84bf67ba862e92aef79691756323a9b40c - 0.0% (2.45 KB)

[#012] sha256:51b7f96c944566d154a9eb40c191cf5cc0cc8435a66676caabe099ce3929a331 - 0.0% (317 Bytes)

[#013] sha256:5ca4040c86e0b1b4d8a4367ae9fa5f909b388cced0a2f303c42e5a22416f4621 - 0.0% (407 Bytes)

[#014] sha256:36dc49d5de4e190dae20e30659cf7d36a99cc867c20351c43462d92d90305640 - 0.0% (2.66 KB)

[#015] sha256:776b65c8e310c76e0c59b859aa110b6538bf97fc471aef5c9d4134aa6b231cc5 - 0.0% (137 Bytes)

[#016] sha256:512ed6049efa1e6d30d12117eec4803f5d988fd6a117e1d698df93faa5fad5fc - 0.0% (397 Bytes)


History
2023-03-29 18:19:24 UTC

/bin/sh -c #(nop) ADD file:9a4f77dfaba7fd2aa78186e4ef0e7486ad55101cefc1fabbc1b385601bb38920 in /

2023-03-29 18:19:24 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-03-30 01:47:13 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2023-03-30 01:47:13 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2023-03-30 01:47:13 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2023-03-30 01:47:13 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=15

2023-03-30 01:47:14 UTC

/bin/sh -c #(nop) ENV PG_VERSION=15.2

2023-03-30 01:47:14 UTC

/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

2023-03-30 01:49:58 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-03-30 01:49:59 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2023-03-30 01:49:59 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql

2023-03-30 01:49:59 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2023-03-30 01:50:00 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"

2023-03-30 01:50:00 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2023-03-30 01:50:00 UTC

/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/

2023-03-30 01:50:00 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-03-30 01:50:00 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-03-30 01:50:00 UTC

/bin/sh -c #(nop) EXPOSE 5432

2023-03-30 01:50:00 UTC

/bin/sh -c #(nop) CMD ["postgres"]

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache bash openssl shadow grep mawk # buildkit

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -ex; deluser postgres; groupmod -g 9999 ping; addgroup -g 999 -S postgres; adduser -u 999 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres # buildkit

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -ex; chown -R postgres:postgres /var/lib/postgresql; chown -R postgres:postgres /var/run/postgresql; chown -R postgres:postgres "$PGDATA" # buildkit

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

COPY start.sh /usr/bin/ # buildkit

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

COPY healthcheck.sh /usr/bin/ # buildkit

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

COPY init-user-db.sh /docker-entrypoint-initdb.d/ # buildkit

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -ex; chmod +x /usr/bin/start.sh; chmod +xr /docker-entrypoint-initdb.d/init-user-db.sh; chmod +x /usr/bin/healthcheck.sh # buildkit

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c mkdir /mnt/data; chown postgres:postgres /mnt/data; # buildkit

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

VOLUME [/mnt/data]

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c echo "root:$(openssl rand -base64 12)" | chpasswd # buildkit

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

USER postgres

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["start.sh"]

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

HEALTHCHECK &{["CMD-SHELL" "healthcheck.sh"] "0s" "0s" "0s" '\x00'}

2023-05-04 14:21:38 UTC (buildkit.dockerfile.v0)

LABEL com.centurylinklabs.watchtower.monitor-only=true

Details
Created

2023-05-04 14:22:16 UTC

Size

89.1 MB

Content Digest
Labels
  • com.centurylinklabs.watchtower.monitor-only
    true

Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

15

PG_SHA256

99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

PG_VERSION

15.2


Layers

[#000] sha256:c41833b44d910632b415cd89a9cdaa4d62c9725dc56c99a7ddadafd6719960f9 - 3.49% (3.11 MB)

[#001] sha256:1a87564129c1e18b5891adf01ea7a04a52707c46ab29def930b438e77b92509a - 0.0% (1.25 KB)

[#002] sha256:f607b407e77d670d9994288846b4aa232a6fe6e96aa01e8b3854d40c4783cde3 - 0.0% (147 Bytes)

[#003] sha256:f664d638d37b9b9809bd02b620fa7e57215e5dbc7e5ce01b4e12f8985e747d1c - 94.8% (84.5 MB)

[#004] sha256:700069113fa6225b28cf7aae9c95ad4443fd622b2f23635a624a60800ed177e0 - 0.01% (9.23 KB)

[#005] sha256:581a482a9ff54fa90befd898d08584b47a1c1f5044ec15b34f4eb5e86c779b95 - 0.0% (160 Bytes)

[#006] sha256:1c5aef15b7cb42436f53f352bdabec68425427b842da98a5df49fc2823a1f507 - 0.0% (196 Bytes)

[#007] sha256:b0ba1c9c1836351ad175dc62bd7ef30c6e14679b3e56aeb88333575eb37c72ea - 0.01% (4.68 KB)

[#008] sha256:0b5101d99ce01120cae80319a34b736ffe0f11c271c2657e7980c67d109775e2 - 1.68% (1.5 MB)

[#009] sha256:60bbc0f0c1dd6c52a675174154d687055fd12c386a4a0ad94deb63c2a64e5591 - 0.0% (1.17 KB)

[#010] sha256:6764c02cac0e9748b4ed9f2edf2bf7f9cf52a56ae48fb37fbb89ab0229b69fa2 - 0.0% (217 Bytes)

[#011] sha256:fcbfa23531bb73f1ea54f182d5c6efbf40d0cbe2030d1a100d97adc70fd3b6c4 - 0.0% (2.45 KB)

[#012] sha256:2e277545f91986c4f001dcf30d8b030c81e872469bd50cfed6dedd8ffb718e2f - 0.0% (317 Bytes)

[#013] sha256:7b8a6bd009accfbf4f23f98ad60d2909dc08d7e81f5befa35cbebc1645c76b5f - 0.0% (407 Bytes)

[#014] sha256:c617cb8ff82f006644aa6fcdddc4d3f20a527a9332f5bbf35848b7caa428ac6e - 0.0% (2.66 KB)

[#015] sha256:512317ed0b9aa0a266c7b8e099c79f7bd33fff0d419a444514b241919c80a5ee - 0.0% (137 Bytes)

[#016] sha256:4aa1a614b43b19086002906a97251e9945a23e28aa181e13568bc8b8081d602b - 0.0% (400 Bytes)


History
2023-03-29 17:39:18 UTC

/bin/sh -c #(nop) ADD file:e51d4089e73ad6dee52b31f0c8059a00c17df6e23f6741fe11b43bd84cc99008 in /

2023-03-29 17:39:18 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-03-30 05:17:20 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2023-03-30 05:17:20 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2023-03-30 05:17:21 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2023-03-30 05:17:21 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=15

2023-03-30 05:17:21 UTC

/bin/sh -c #(nop) ENV PG_VERSION=15.2

2023-03-30 05:17:21 UTC

/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

2023-03-30 05:19:20 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-03-30 05:19:21 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2023-03-30 05:19:21 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql

2023-03-30 05:19:22 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2023-03-30 05:19:22 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"

2023-03-30 05:19:22 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2023-03-30 05:19:22 UTC

/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/

2023-03-30 05:19:22 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-03-30 05:19:22 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-03-30 05:19:22 UTC

/bin/sh -c #(nop) EXPOSE 5432

2023-03-30 05:19:22 UTC

/bin/sh -c #(nop) CMD ["postgres"]

2023-05-04 14:22:15 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache bash openssl shadow grep mawk # buildkit

2023-05-04 14:22:15 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -ex; deluser postgres; groupmod -g 9999 ping; addgroup -g 999 -S postgres; adduser -u 999 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres # buildkit

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -ex; chown -R postgres:postgres /var/lib/postgresql; chown -R postgres:postgres /var/run/postgresql; chown -R postgres:postgres "$PGDATA" # buildkit

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

COPY start.sh /usr/bin/ # buildkit

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

COPY healthcheck.sh /usr/bin/ # buildkit

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

COPY init-user-db.sh /docker-entrypoint-initdb.d/ # buildkit

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -ex; chmod +x /usr/bin/start.sh; chmod +xr /docker-entrypoint-initdb.d/init-user-db.sh; chmod +x /usr/bin/healthcheck.sh # buildkit

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c mkdir /mnt/data; chown postgres:postgres /mnt/data; # buildkit

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

VOLUME [/mnt/data]

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c echo "root:$(openssl rand -base64 12)" | chpasswd # buildkit

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

USER postgres

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["start.sh"]

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

HEALTHCHECK &{["CMD-SHELL" "healthcheck.sh"] "0s" "0s" "0s" '\x00'}

2023-05-04 14:22:16 UTC (buildkit.dockerfile.v0)

LABEL com.centurylinklabs.watchtower.monitor-only=true

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete