Namespace
library
Image / Tag
postgres:12.3-alpine
Content Digest
sha256:7693f2082c681571d1dfa66d63f21689192c0c36108f4eb28be0aee0dc285921
Details
Created

2020-06-26 22:30:04 UTC

Size

61.9 MB

Content Digest
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

12

PG_SHA256

94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

PG_VERSION

12.3


Layers

[#000] sha256:0625b4155e2a59f647ece47c0cd77ed3196b1f84454fa64ce80cad90e2b9b79e - 4.3% (2.66 MB)

[#001] sha256:c748d368bf108a32daf0810b28e1996f37eca0dfed0dac7c8c2598e6c6029748 - 0.0% (1.22 KB)

[#002] sha256:8b0010b2123bc87ca763bce1e85a2350a168ce13065a7ae9b47e6ed49fa4b72d - 0.0% (115 Bytes)

[#003] sha256:18cee6e2b0762ba90033ebbe6d9da07ee10fc428d394ae5c2f7492238a74fca7 - 95.67% (59.2 MB)

[#004] sha256:951fae9d89ed4ada125bf5e34ae13b62444338a260a2a833728fb0279940c34e - 0.01% (8.02 KB)

[#005] sha256:1f488d6230f109fe89cf5f5842b7198b2317fd62a7b3906b87dcb8c626c1c137 - 0.0% (130 Bytes)

[#006] sha256:1742f8342660ddb165991568e652a13c8d1cc18c6acc2046d7981844d8e78276 - 0.0% (165 Bytes)

[#007] sha256:56d74c7bdb136f9e3f25fd37e0aea881bc0eea4da21c64db473f86319ec02bc8 - 0.01% (4.16 KB)


History
2020-05-29 21:38:33 UTC

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

2020-05-29 21:38:33 UTC

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

2020-06-11 23:02:21 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

2020-06-11 23:02:22 UTC

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

2020-06-11 23:02:23 UTC

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

2020-06-11 23:14:36 UTC

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

2020-06-11 23:14:37 UTC

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

2020-06-11 23:14:37 UTC

/bin/sh -c #(nop) ENV PG_SHA256=94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

2020-06-26 22:29:56 UTC

/bin/sh -c set -ex && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-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-openssl --with-libxml --with-libxslt --with-icu --with-llvm && 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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2020-06-26 22:29:58 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-06-26 22:30:00 UTC

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

2020-06-26 22:30:00 UTC

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

2020-06-26 22:30:02 UTC

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

2020-06-26 22:30:02 UTC

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

2020-06-26 22:30:03 UTC

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

2020-06-26 22:30:03 UTC

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

2020-06-26 22:30:03 UTC

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

2020-06-26 22:30:04 UTC

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

Details
Created

2020-06-26 20:50:34 UTC

Size

58.5 MB

Content Digest
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

12

PG_SHA256

94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

PG_VERSION

12.3


Layers

[#000] sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c - 4.56% (2.67 MB)

[#001] sha256:600cd4e17445b526dc093ca716d204a866349e5c7228251e31178e81371c47ff - 0.0% (1.22 KB)

[#002] sha256:04c8eedc9a7657acd81498f6619dffcb88d9a150879f9ec0cc358834aa84aaf7 - 0.0% (115 Bytes)

[#003] sha256:5297ada89a4c0c82b8827b56a187b4b26eac1f42b07570782a604e8a97c10f4e - 95.42% (55.8 MB)

[#004] sha256:98abddcccd61a3ab880d0bb1c13905867323c8c757a6284d323c25f289632147 - 0.01% (8.02 KB)

[#005] sha256:e1c4a715559d6613f84096a24ec80dc332269669bb381ba5f0401ccf918cb673 - 0.0% (129 Bytes)

[#006] sha256:45b14c068d3c5d0a909ee6af86f495c11e7faf02c16ed69ddd494ca556fa53ef - 0.0% (163 Bytes)

[#007] sha256:b5953399c544eac28fdcf541e597cadaf45f4035b3c5a74d96d2ce2a9bd5c864 - 0.01% (4.17 KB)


History
2020-05-29 21:19:46 UTC

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

2020-05-29 21:19:46 UTC

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

2020-06-11 22:46:48 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

2020-06-11 22:46:48 UTC

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

2020-06-11 22:46:49 UTC

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

2020-06-11 22:56:01 UTC

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

2020-06-11 22:56:01 UTC

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

2020-06-11 22:56:02 UTC

/bin/sh -c #(nop) ENV PG_SHA256=94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

2020-06-26 20:50:27 UTC

/bin/sh -c set -ex && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-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-openssl --with-libxml --with-libxslt --with-icu --with-llvm && 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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2020-06-26 20:50:29 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-06-26 20:50:31 UTC

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

2020-06-26 20:50:31 UTC

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

2020-06-26 20:50:33 UTC

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

2020-06-26 20:50:33 UTC

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

2020-06-26 20:50:33 UTC

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

2020-06-26 20:50:34 UTC

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

2020-06-26 20:50:34 UTC

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

2020-06-26 20:50:34 UTC

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

Details
Created

2020-06-26 19:42:25 UTC

Size

56.9 MB

Content Digest
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

12

PG_SHA256

94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

PG_VERSION

12.3


Layers

[#000] sha256:b4b72e716706d29f5d2351709c20bf737b94f876a5472a43ff1b6e203c65d27f - 4.36% (2.48 MB)

[#001] sha256:4e0c6822b30b82f1bf3837b7d730cf7d68d7101602023fc38fb839cf826a5bd6 - 0.0% (1.25 KB)

[#002] sha256:dcc1c5a5bbcba93ab5809dbcc58c6042d7a9983681f6a6f951d947b0d4d0c3b5 - 0.0% (149 Bytes)

[#003] sha256:87feeab78f2b656fdcc3f57d24e02c2df3213933d1ca24d6453eb9c117ad749a - 95.61% (54.4 MB)

[#004] sha256:4bce8680ff8c23ecee75cf79d58d32decd8d550898b512cf92905561e82bd0bf - 0.01% (8.02 KB)

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

[#006] sha256:ae652ff093c5072b895e3a3e4ba260ea3ccf18536f172015898d7a74699711fd - 0.0% (194 Bytes)

[#007] sha256:71e0085f33862c7182d9fd6e925bc6bc67a77b176e827faff0335f82839188ad - 0.01% (4.16 KB)


History
2020-05-29 21:50:55 UTC

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

2020-05-29 21:50:56 UTC

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

2020-06-11 20:27:27 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

2020-06-11 20:27:28 UTC

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

2020-06-11 20:27:30 UTC

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

2020-06-11 20:32:21 UTC

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

2020-06-11 20:32:21 UTC

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

2020-06-11 20:32:23 UTC

/bin/sh -c #(nop) ENV PG_SHA256=94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

2020-06-26 19:42:02 UTC

/bin/sh -c set -ex && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-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-openssl --with-libxml --with-libxslt --with-icu --with-llvm && 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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2020-06-26 19:42:08 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-06-26 19:42:11 UTC

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

2020-06-26 19:42:13 UTC

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

2020-06-26 19:42:16 UTC

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

2020-06-26 19:42:18 UTC

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

2020-06-26 19:42:19 UTC

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

2020-06-26 19:42:21 UTC

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

2020-06-26 19:42:24 UTC

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

2020-06-26 19:42:25 UTC

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

Details
Created

2020-06-26 19:32:22 UTC

Size

54.2 MB

Content Digest
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

12

PG_SHA256

94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

PG_VERSION

12.3


Layers

[#000] sha256:52278dd8e57993669c5b72a9620e89bebdc098f2af2379caaa8945f7403f77a2 - 4.24% (2.3 MB)

[#001] sha256:fcd3f931b2a724d22b1f76af233e84a5d592aa2a21caad88700c700ef28bec95 - 0.0% (1.24 KB)

[#002] sha256:19f754b96158415f11b928d9d9e9f98a8cd305f2a033ef0b4c6e7bfe6645b508 - 0.0% (149 Bytes)

[#003] sha256:fecb463d38da47c8d2009b8eb1f09e114dcb77cf0e39d561a39ac529a25400ca - 95.74% (51.8 MB)

[#004] sha256:9562cb73f0ed340efd756a3f732ea9125ec4c2fe33c2fb97d6e3f85197541427 - 0.01% (8.02 KB)

[#005] sha256:519a5771a201233cb1cf14b813158311c8973d1285dd5f5ed6e7e45b35aa9454 - 0.0% (163 Bytes)

[#006] sha256:304abce742961561a77cdb9f75bcd295ff5f7f15f2686a6047db33234d14bba8 - 0.0% (194 Bytes)

[#007] sha256:34fecbf812497cdb6ed88d859a0ff3b5ea5f47b4540d6f3e5470a7c98efa3a0e - 0.01% (4.16 KB)


History
2020-05-29 21:02:07 UTC

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

2020-05-29 21:02:08 UTC

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

2020-06-11 20:43:57 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

2020-06-11 20:43:58 UTC

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

2020-06-11 20:44:01 UTC

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

2020-06-11 20:47:49 UTC

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

2020-06-11 20:47:51 UTC

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

2020-06-11 20:47:51 UTC

/bin/sh -c #(nop) ENV PG_SHA256=94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

2020-06-26 19:32:09 UTC

/bin/sh -c set -ex && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-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-openssl --with-libxml --with-libxslt --with-icu --with-llvm && 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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2020-06-26 19:32:13 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-06-26 19:32:15 UTC

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

2020-06-26 19:32:16 UTC

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

2020-06-26 19:32:18 UTC

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

2020-06-26 19:32:19 UTC

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

2020-06-26 19:32:20 UTC

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

2020-06-26 19:32:20 UTC

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

2020-06-26 19:32:21 UTC

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

2020-06-26 19:32:22 UTC

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

Details
Created

2020-06-26 20:47:29 UTC

Size

58.1 MB

Content Digest
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

12

PG_SHA256

94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

PG_VERSION

12.3


Layers

[#000] sha256:b538f80385f9b48122e3da068c932a96ea5018afa3c7be79da00437414bd18cd - 4.44% (2.58 MB)

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

[#002] sha256:6bf1f783f6dc9622807ab9414bb09346699c6eea41fd6260efcfe679699f206d - 0.0% (149 Bytes)

[#003] sha256:238f2905067d4601a8ee74e7b84c37601f926a04fd837af0ca282f2a3f05ac04 - 95.53% (55.5 MB)

[#004] sha256:73edf12b31e63174f21c23533464f86c14ad0e08f4501d5a4af38b8c58c8aee1 - 0.01% (8.02 KB)

[#005] sha256:77b9ec840430c52fb2a3ef1427bc1b6530550c25034981efadbd8d505784fc33 - 0.0% (163 Bytes)

[#006] sha256:7b0c16fa21d4e5e774ee48948556c183aa06b78d6902c67b622fa96c2d315a37 - 0.0% (195 Bytes)

[#007] sha256:c836a42485c353b2a48c243d5cfa31632a815fbfc511c8532ab98252e54fd3fa - 0.01% (4.16 KB)


History
2020-05-29 21:43:19 UTC

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

2020-05-29 21:43:20 UTC

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

2020-06-11 21:06:12 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

2020-06-11 21:06:13 UTC

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

2020-06-11 21:06:16 UTC

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

2020-06-11 21:10:22 UTC

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

2020-06-11 21:10:23 UTC

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

2020-06-11 21:10:24 UTC

/bin/sh -c #(nop) ENV PG_SHA256=94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

2020-06-26 20:47:12 UTC

/bin/sh -c set -ex && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-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-openssl --with-libxml --with-libxslt --with-icu --with-llvm && 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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2020-06-26 20:47:20 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-06-26 20:47:22 UTC

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

2020-06-26 20:47:23 UTC

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

2020-06-26 20:47:25 UTC

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

2020-06-26 20:47:26 UTC

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

2020-06-26 20:47:26 UTC

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

2020-06-26 20:47:27 UTC

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

2020-06-26 20:47:28 UTC

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

2020-06-26 20:47:29 UTC

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

Details
Created

2020-06-26 20:27:35 UTC

Size

60.7 MB

Content Digest
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

12

PG_SHA256

94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

PG_VERSION

12.3


Layers

[#000] sha256:5077f8601dceb5744d875d7740ebc203f674b108a0188f3a31e292b21a4bee64 - 4.41% (2.68 MB)

[#001] sha256:8a9f72d45e54d4dd62def75147b46a533078a8d2923214d24a8e89d83d426c84 - 0.0% (1.25 KB)

[#002] sha256:7d870eff785c52b89df973046311ce60ebdc465c597c3268e41f87f0e4e645ef - 0.0% (149 Bytes)

[#003] sha256:b085dc2514cfaf8d00ec666640e08e40177fd2583adc94ab8e1e1c57e8250693 - 95.57% (58 MB)

[#004] sha256:0eb3f4bb6e8d111f7b8e6d227504d112860aa7cad5cdb203851da76d104e618f - 0.01% (8.02 KB)

[#005] sha256:0e195fe85f99104a2e33190f6db6fbea5c87a6eda7938c926ffd96922bda1a00 - 0.0% (161 Bytes)

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

[#007] sha256:024209f51935b8026432a3b45a5ba8535e4e1efa9f7fd0935cb54505f4b96555 - 0.01% (4.16 KB)


History
2020-05-29 21:23:03 UTC

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

2020-05-29 21:23:06 UTC

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

2020-06-11 21:40:53 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

2020-06-11 21:40:56 UTC

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

2020-06-11 21:41:01 UTC

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

2020-06-11 21:45:39 UTC

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

2020-06-11 21:45:41 UTC

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

2020-06-11 21:45:44 UTC

/bin/sh -c #(nop) ENV PG_SHA256=94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

2020-06-26 20:26:51 UTC

/bin/sh -c set -ex && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-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-openssl --with-libxml --with-libxslt --with-icu --with-llvm && 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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2020-06-26 20:27:02 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-06-26 20:27:12 UTC

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

2020-06-26 20:27:14 UTC

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

2020-06-26 20:27:20 UTC

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

2020-06-26 20:27:22 UTC

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

2020-06-26 20:27:24 UTC

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

2020-06-26 20:27:29 UTC

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

2020-06-26 20:27:32 UTC

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

2020-06-26 20:27:35 UTC

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

Details
Created

2020-06-26 19:57:58 UTC

Size

60.8 MB

Content Digest
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

12

PG_SHA256

94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

PG_VERSION

12.3


Layers

[#000] sha256:8fb3d41b2e9a59630b51745f257cd2561f96bcd15cf309fcc20120d5fcee8c5b - 4.03% (2.45 MB)

[#001] sha256:9066740685f109ff5f6b8d3a76bf92f0a147fc0c2c7a12e60fdc44c49e476f9d - 0.0% (1.25 KB)

[#002] sha256:a8b44ce9d8f58aeaceb2528f4511ad9c56f557e0951ea9cf22b452d5e2f8bbf0 - 0.0% (149 Bytes)

[#003] sha256:55602a3c751185f88c96f264e3fb75fd4547682de3be236d9a555d43e38883f4 - 95.95% (58.3 MB)

[#004] sha256:a73525f36f02abe22fe8be4a9d115321bbba22b0f4d10c53a594d1d3ea9eb45e - 0.01% (8.02 KB)

[#005] sha256:b798f75f3a18e47eb5fa425dc1f1f3c1a9e6203fb84b06769c5e00adbb45801b - 0.0% (161 Bytes)

[#006] sha256:2002c501c499c18f93cff4bbeb9e7bfba81e6affc8916e12578c7908a40a09f3 - 0.0% (195 Bytes)

[#007] sha256:f3b5135fff4fd8865606bed34f2b33b654cbf515fe27a8259aafb85a922b5807 - 0.01% (4.16 KB)


History
2020-05-29 21:41:39 UTC

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

2020-05-29 21:41:39 UTC

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

2020-06-11 19:51:55 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

2020-06-11 19:51:56 UTC

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

2020-06-11 19:51:57 UTC

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

2020-06-11 19:56:22 UTC

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

2020-06-11 19:56:22 UTC

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

2020-06-11 19:56:23 UTC

/bin/sh -c #(nop) ENV PG_SHA256=94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41

2020-06-26 19:57:53 UTC

/bin/sh -c set -ex && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-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-openssl --with-libxml --with-libxslt --with-icu --with-llvm && 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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2020-06-26 19:57:56 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-06-26 19:57:57 UTC

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

2020-06-26 19:57:57 UTC

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

2020-06-26 19:57:57 UTC

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

2020-06-26 19:57:58 UTC

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

2020-06-26 19:57:58 UTC

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

2020-06-26 19:57:58 UTC

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

2020-06-26 19:57:58 UTC

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

2020-06-26 19:57:58 UTC

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

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