From 8e864b3deee9984713fd6e88f6fc5860adf2ae7c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 Jun 2023 11:53:19 -0700 Subject: [PATCH] Run update-remote.sh on yourls --- repos/yourls/remote/1-apache.md | 234 +-- repos/yourls/remote/1-fpm.md | 186 +- repos/yourls/remote/1.9-apache.md | 234 +-- repos/yourls/remote/1.9-fpm.md | 186 +- repos/yourls/remote/1.9.2-apache.md | 234 +-- repos/yourls/remote/1.9.2-fpm.md | 186 +- repos/yourls/remote/1.9.2.md | 234 +-- repos/yourls/remote/1.9.md | 234 +-- repos/yourls/remote/1.md | 234 +-- repos/yourls/remote/apache.md | 234 +-- repos/yourls/remote/fpm.md | 186 +- repos/yourls/remote/latest.md | 234 +-- repos/yourls/tag-details.md | 2616 +++++++++++++-------------- 13 files changed, 2616 insertions(+), 2616 deletions(-) diff --git a/repos/yourls/remote/1-apache.md b/repos/yourls/remote/1-apache.md index 9c2ae389df0449..c1058d1503c126 100644 --- a/repos/yourls/remote/1-apache.md +++ b/repos/yourls/remote/1-apache.md @@ -1,7 +1,7 @@ ## `yourls:1-apache` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -221,204 +221,204 @@ CMD ["apache2-foreground"] ### `yourls:1-apache` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1-apache` - linux; arm variant v7 diff --git a/repos/yourls/remote/1-fpm.md b/repos/yourls/remote/1-fpm.md index 4c0b7386457f9f..7a43157180862a 100644 --- a/repos/yourls/remote/1-fpm.md +++ b/repos/yourls/remote/1-fpm.md @@ -1,7 +1,7 @@ ## `yourls:1-fpm` ```console -$ docker pull yourls@sha256:b160d55b786752bd1fa112c94895b233083c95ff4f092a6bf142d623b8159135 +$ docker pull yourls@sha256:f11b7e50030c9ab184abbf765582d749b311f4beab7679fdf85d75c86587ed59 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -187,170 +187,170 @@ CMD ["php-fpm"] ### `yourls:1-fpm` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:eb9cef664f30d0491af193e8f867c33c159dc0f92d03a2e0e675827059488bd7 +$ docker pull yourls@sha256:5551d495b81b3b9d615cd72d7f441e6950deddd63a354e77b458eb7665472347 ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **145.9 MB (145889756 bytes)** +- Total Size: **144.3 MB (144299790 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:57c9dd16c8cbd2f32c06a5e96068e22c691802ab0b20036d83bd50575db56119` +- Image ID: `sha256:85879a1ba48b7893b4960f1052ad16a0542acc3deb2c910d3e91de7df0083ecc` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["php-fpm"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:57 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:58 GMT COPY multi:869bde9dbeae74886a05c9e2107b3e3b4877116db8c6d9adbaff2719f9fb5262 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:58 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT RUN set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work.'; echo '; https://bugs.php.net/bug.php?id=73886'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf; mkdir -p "$PHP_INI_DIR/conf.d"; { echo '; https://github.com/docker-library/php/issues/878#issuecomment-938595965'; echo 'fastcgi.logging = Off'; } > "$PHP_INI_DIR/conf.d/docker-fpm.ini" -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT STOPSIGNAL SIGQUIT -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT EXPOSE 9000 -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT CMD ["php-fpm"] -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:43:06 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT CMD ["php-fpm"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b81a35202eb8af305c9a3ed54b183ded0119c0823eaa1cda0ead2cfbb5da5770` - Last Modified: Fri, 09 Jun 2023 01:22:10 GMT - Size: 12.3 MB (12335271 bytes) + - `sha256:d2afa832b836b845a2dc2a3e3bbe1531cb856da2e81f2b78f6a7a047305c728d` + Last Modified: Tue, 13 Jun 2023 09:20:08 GMT + Size: 12.3 MB (12335264 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:130ced327ac02e3adb58a6373017639c5e91d0ab24ad382c36ee9f0caa51a8ee` - Last Modified: Fri, 09 Jun 2023 01:22:09 GMT + - `sha256:c69d586fee5e97781923a99290af353d2bd6fe4b2a4fd7785d4602e53a72b401` + Last Modified: Tue, 13 Jun 2023 09:20:07 GMT Size: 492.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:91368e5d4f464835b2eceb362577440b4afbc36918095719f7047947a2e93229` - Last Modified: Fri, 09 Jun 2023 01:23:29 GMT - Size: 26.7 MB (26719076 bytes) + - `sha256:c0d9d13a176f3dc6bac787daf4bf2213f76ac2b252b7e5e93a7025e8bb6a427a` + Last Modified: Tue, 13 Jun 2023 09:21:16 GMT + Size: 25.1 MB (25114153 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a43acc01aeb57691ea0636fc5e837755648a2eb17dc58b7b32fd227d6b44f575` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 2.5 KB (2454 bytes) + - `sha256:79012cd6c73666522981468b70412fc57104641a7ce9a0d5e2d57dd9bbc6fa9a` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 2.4 KB (2447 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:36e6c9a6483f0a104053315878d7fbc03cb7a22003e248ac695ee59b77dd21ae` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 248.0 B + - `sha256:135630323dc7d502872c6f7e0c7ba21822e5170165de2bb38b13bab2cc0f046b` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 243.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b30fa98124ac3ad573a251d2a5157a456243c584546827ddf31549559bc18434` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 9.2 KB (9184 bytes) + - `sha256:ec2b37c0f1f40c4ad03f33e14521552b80f4abd8411ff2c43547521c9b35e55f` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 9.2 KB (9178 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:fa65e149ac3c0e19686fc24ea65cee505ae909fc3334e33bdca6ac6dcfbfa6c0` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 154.7 KB (154671 bytes) + - `sha256:b4262930bcaaa232ac8c732a3cfdb0e7525bd09de63142bd1f0675bce92c0a06` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 154.7 KB (154661 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:48a14184e9e7494184f2be6cb1c606214e5344dd2aed4fdf71e10dfc41def165` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 330.0 B + - `sha256:df8a6f07f18ade6d5219eb9d4f9ee49dd7e351d4a88b33db82eb346f7fcd6ae3` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 328.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:f6b8d9b09f417d8ec4bbfd053dd55eee843094fc87a64072fd8e54048f6071f3` - Last Modified: Fri, 09 Jun 2023 01:43:50 GMT - Size: 4.1 MB (4073441 bytes) + - `sha256:3b153b969fdaefb27e7cecc556a0bcf7bc717c251ca245a8c031d9700bf907df` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 4.1 MB (4073448 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:9516500e94f0199c364b313f26b2ad792d910acd4b54fc751282e69e17bcb4c5` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT + - `sha256:acd1f4ae88dc6c4c94f0716ca2fc7d15b565d386f4476017ceb8dd66777006fa` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT Size: 2.0 KB (2048 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ab34fa4d8585615dcb2c75e0a180e81135b2a685f71d7836dcab455bf09d93f2` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 1.6 KB (1555 bytes) + - `sha256:71ce2df5736e7097eb02b891eff990015db93cd1ab9ab43ddafeaf42fbbbb67c` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 1.6 KB (1550 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1-fpm` - linux; arm variant v7 diff --git a/repos/yourls/remote/1.9-apache.md b/repos/yourls/remote/1.9-apache.md index c766a9211fcd5c..b2bab7536cf073 100644 --- a/repos/yourls/remote/1.9-apache.md +++ b/repos/yourls/remote/1.9-apache.md @@ -1,7 +1,7 @@ ## `yourls:1.9-apache` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -221,204 +221,204 @@ CMD ["apache2-foreground"] ### `yourls:1.9-apache` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9-apache` - linux; arm variant v7 diff --git a/repos/yourls/remote/1.9-fpm.md b/repos/yourls/remote/1.9-fpm.md index 4e624a58377ae1..43e36935e188aa 100644 --- a/repos/yourls/remote/1.9-fpm.md +++ b/repos/yourls/remote/1.9-fpm.md @@ -1,7 +1,7 @@ ## `yourls:1.9-fpm` ```console -$ docker pull yourls@sha256:b160d55b786752bd1fa112c94895b233083c95ff4f092a6bf142d623b8159135 +$ docker pull yourls@sha256:f11b7e50030c9ab184abbf765582d749b311f4beab7679fdf85d75c86587ed59 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -187,170 +187,170 @@ CMD ["php-fpm"] ### `yourls:1.9-fpm` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:eb9cef664f30d0491af193e8f867c33c159dc0f92d03a2e0e675827059488bd7 +$ docker pull yourls@sha256:5551d495b81b3b9d615cd72d7f441e6950deddd63a354e77b458eb7665472347 ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **145.9 MB (145889756 bytes)** +- Total Size: **144.3 MB (144299790 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:57c9dd16c8cbd2f32c06a5e96068e22c691802ab0b20036d83bd50575db56119` +- Image ID: `sha256:85879a1ba48b7893b4960f1052ad16a0542acc3deb2c910d3e91de7df0083ecc` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["php-fpm"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:57 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:58 GMT COPY multi:869bde9dbeae74886a05c9e2107b3e3b4877116db8c6d9adbaff2719f9fb5262 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:58 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT RUN set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work.'; echo '; https://bugs.php.net/bug.php?id=73886'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf; mkdir -p "$PHP_INI_DIR/conf.d"; { echo '; https://github.com/docker-library/php/issues/878#issuecomment-938595965'; echo 'fastcgi.logging = Off'; } > "$PHP_INI_DIR/conf.d/docker-fpm.ini" -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT STOPSIGNAL SIGQUIT -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT EXPOSE 9000 -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT CMD ["php-fpm"] -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:43:06 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT CMD ["php-fpm"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b81a35202eb8af305c9a3ed54b183ded0119c0823eaa1cda0ead2cfbb5da5770` - Last Modified: Fri, 09 Jun 2023 01:22:10 GMT - Size: 12.3 MB (12335271 bytes) + - `sha256:d2afa832b836b845a2dc2a3e3bbe1531cb856da2e81f2b78f6a7a047305c728d` + Last Modified: Tue, 13 Jun 2023 09:20:08 GMT + Size: 12.3 MB (12335264 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:130ced327ac02e3adb58a6373017639c5e91d0ab24ad382c36ee9f0caa51a8ee` - Last Modified: Fri, 09 Jun 2023 01:22:09 GMT + - `sha256:c69d586fee5e97781923a99290af353d2bd6fe4b2a4fd7785d4602e53a72b401` + Last Modified: Tue, 13 Jun 2023 09:20:07 GMT Size: 492.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:91368e5d4f464835b2eceb362577440b4afbc36918095719f7047947a2e93229` - Last Modified: Fri, 09 Jun 2023 01:23:29 GMT - Size: 26.7 MB (26719076 bytes) + - `sha256:c0d9d13a176f3dc6bac787daf4bf2213f76ac2b252b7e5e93a7025e8bb6a427a` + Last Modified: Tue, 13 Jun 2023 09:21:16 GMT + Size: 25.1 MB (25114153 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a43acc01aeb57691ea0636fc5e837755648a2eb17dc58b7b32fd227d6b44f575` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 2.5 KB (2454 bytes) + - `sha256:79012cd6c73666522981468b70412fc57104641a7ce9a0d5e2d57dd9bbc6fa9a` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 2.4 KB (2447 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:36e6c9a6483f0a104053315878d7fbc03cb7a22003e248ac695ee59b77dd21ae` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 248.0 B + - `sha256:135630323dc7d502872c6f7e0c7ba21822e5170165de2bb38b13bab2cc0f046b` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 243.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b30fa98124ac3ad573a251d2a5157a456243c584546827ddf31549559bc18434` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 9.2 KB (9184 bytes) + - `sha256:ec2b37c0f1f40c4ad03f33e14521552b80f4abd8411ff2c43547521c9b35e55f` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 9.2 KB (9178 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:fa65e149ac3c0e19686fc24ea65cee505ae909fc3334e33bdca6ac6dcfbfa6c0` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 154.7 KB (154671 bytes) + - `sha256:b4262930bcaaa232ac8c732a3cfdb0e7525bd09de63142bd1f0675bce92c0a06` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 154.7 KB (154661 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:48a14184e9e7494184f2be6cb1c606214e5344dd2aed4fdf71e10dfc41def165` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 330.0 B + - `sha256:df8a6f07f18ade6d5219eb9d4f9ee49dd7e351d4a88b33db82eb346f7fcd6ae3` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 328.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:f6b8d9b09f417d8ec4bbfd053dd55eee843094fc87a64072fd8e54048f6071f3` - Last Modified: Fri, 09 Jun 2023 01:43:50 GMT - Size: 4.1 MB (4073441 bytes) + - `sha256:3b153b969fdaefb27e7cecc556a0bcf7bc717c251ca245a8c031d9700bf907df` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 4.1 MB (4073448 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:9516500e94f0199c364b313f26b2ad792d910acd4b54fc751282e69e17bcb4c5` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT + - `sha256:acd1f4ae88dc6c4c94f0716ca2fc7d15b565d386f4476017ceb8dd66777006fa` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT Size: 2.0 KB (2048 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ab34fa4d8585615dcb2c75e0a180e81135b2a685f71d7836dcab455bf09d93f2` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 1.6 KB (1555 bytes) + - `sha256:71ce2df5736e7097eb02b891eff990015db93cd1ab9ab43ddafeaf42fbbbb67c` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 1.6 KB (1550 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9-fpm` - linux; arm variant v7 diff --git a/repos/yourls/remote/1.9.2-apache.md b/repos/yourls/remote/1.9.2-apache.md index 2192932858e96e..fcd64079357d3b 100644 --- a/repos/yourls/remote/1.9.2-apache.md +++ b/repos/yourls/remote/1.9.2-apache.md @@ -1,7 +1,7 @@ ## `yourls:1.9.2-apache` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -221,204 +221,204 @@ CMD ["apache2-foreground"] ### `yourls:1.9.2-apache` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9.2-apache` - linux; arm variant v7 diff --git a/repos/yourls/remote/1.9.2-fpm.md b/repos/yourls/remote/1.9.2-fpm.md index 2b9882532ec420..992ace5d5cf62e 100644 --- a/repos/yourls/remote/1.9.2-fpm.md +++ b/repos/yourls/remote/1.9.2-fpm.md @@ -1,7 +1,7 @@ ## `yourls:1.9.2-fpm` ```console -$ docker pull yourls@sha256:b160d55b786752bd1fa112c94895b233083c95ff4f092a6bf142d623b8159135 +$ docker pull yourls@sha256:f11b7e50030c9ab184abbf765582d749b311f4beab7679fdf85d75c86587ed59 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -187,170 +187,170 @@ CMD ["php-fpm"] ### `yourls:1.9.2-fpm` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:eb9cef664f30d0491af193e8f867c33c159dc0f92d03a2e0e675827059488bd7 +$ docker pull yourls@sha256:5551d495b81b3b9d615cd72d7f441e6950deddd63a354e77b458eb7665472347 ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **145.9 MB (145889756 bytes)** +- Total Size: **144.3 MB (144299790 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:57c9dd16c8cbd2f32c06a5e96068e22c691802ab0b20036d83bd50575db56119` +- Image ID: `sha256:85879a1ba48b7893b4960f1052ad16a0542acc3deb2c910d3e91de7df0083ecc` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["php-fpm"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:57 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:58 GMT COPY multi:869bde9dbeae74886a05c9e2107b3e3b4877116db8c6d9adbaff2719f9fb5262 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:58 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT RUN set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work.'; echo '; https://bugs.php.net/bug.php?id=73886'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf; mkdir -p "$PHP_INI_DIR/conf.d"; { echo '; https://github.com/docker-library/php/issues/878#issuecomment-938595965'; echo 'fastcgi.logging = Off'; } > "$PHP_INI_DIR/conf.d/docker-fpm.ini" -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT STOPSIGNAL SIGQUIT -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT EXPOSE 9000 -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT CMD ["php-fpm"] -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:43:06 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT CMD ["php-fpm"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b81a35202eb8af305c9a3ed54b183ded0119c0823eaa1cda0ead2cfbb5da5770` - Last Modified: Fri, 09 Jun 2023 01:22:10 GMT - Size: 12.3 MB (12335271 bytes) + - `sha256:d2afa832b836b845a2dc2a3e3bbe1531cb856da2e81f2b78f6a7a047305c728d` + Last Modified: Tue, 13 Jun 2023 09:20:08 GMT + Size: 12.3 MB (12335264 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:130ced327ac02e3adb58a6373017639c5e91d0ab24ad382c36ee9f0caa51a8ee` - Last Modified: Fri, 09 Jun 2023 01:22:09 GMT + - `sha256:c69d586fee5e97781923a99290af353d2bd6fe4b2a4fd7785d4602e53a72b401` + Last Modified: Tue, 13 Jun 2023 09:20:07 GMT Size: 492.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:91368e5d4f464835b2eceb362577440b4afbc36918095719f7047947a2e93229` - Last Modified: Fri, 09 Jun 2023 01:23:29 GMT - Size: 26.7 MB (26719076 bytes) + - `sha256:c0d9d13a176f3dc6bac787daf4bf2213f76ac2b252b7e5e93a7025e8bb6a427a` + Last Modified: Tue, 13 Jun 2023 09:21:16 GMT + Size: 25.1 MB (25114153 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a43acc01aeb57691ea0636fc5e837755648a2eb17dc58b7b32fd227d6b44f575` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 2.5 KB (2454 bytes) + - `sha256:79012cd6c73666522981468b70412fc57104641a7ce9a0d5e2d57dd9bbc6fa9a` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 2.4 KB (2447 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:36e6c9a6483f0a104053315878d7fbc03cb7a22003e248ac695ee59b77dd21ae` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 248.0 B + - `sha256:135630323dc7d502872c6f7e0c7ba21822e5170165de2bb38b13bab2cc0f046b` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 243.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b30fa98124ac3ad573a251d2a5157a456243c584546827ddf31549559bc18434` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 9.2 KB (9184 bytes) + - `sha256:ec2b37c0f1f40c4ad03f33e14521552b80f4abd8411ff2c43547521c9b35e55f` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 9.2 KB (9178 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:fa65e149ac3c0e19686fc24ea65cee505ae909fc3334e33bdca6ac6dcfbfa6c0` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 154.7 KB (154671 bytes) + - `sha256:b4262930bcaaa232ac8c732a3cfdb0e7525bd09de63142bd1f0675bce92c0a06` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 154.7 KB (154661 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:48a14184e9e7494184f2be6cb1c606214e5344dd2aed4fdf71e10dfc41def165` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 330.0 B + - `sha256:df8a6f07f18ade6d5219eb9d4f9ee49dd7e351d4a88b33db82eb346f7fcd6ae3` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 328.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:f6b8d9b09f417d8ec4bbfd053dd55eee843094fc87a64072fd8e54048f6071f3` - Last Modified: Fri, 09 Jun 2023 01:43:50 GMT - Size: 4.1 MB (4073441 bytes) + - `sha256:3b153b969fdaefb27e7cecc556a0bcf7bc717c251ca245a8c031d9700bf907df` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 4.1 MB (4073448 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:9516500e94f0199c364b313f26b2ad792d910acd4b54fc751282e69e17bcb4c5` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT + - `sha256:acd1f4ae88dc6c4c94f0716ca2fc7d15b565d386f4476017ceb8dd66777006fa` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT Size: 2.0 KB (2048 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ab34fa4d8585615dcb2c75e0a180e81135b2a685f71d7836dcab455bf09d93f2` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 1.6 KB (1555 bytes) + - `sha256:71ce2df5736e7097eb02b891eff990015db93cd1ab9ab43ddafeaf42fbbbb67c` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 1.6 KB (1550 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9.2-fpm` - linux; arm variant v7 diff --git a/repos/yourls/remote/1.9.2.md b/repos/yourls/remote/1.9.2.md index 0b33c2044a733f..c8a41625f20ce7 100644 --- a/repos/yourls/remote/1.9.2.md +++ b/repos/yourls/remote/1.9.2.md @@ -1,7 +1,7 @@ ## `yourls:1.9.2` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -221,204 +221,204 @@ CMD ["apache2-foreground"] ### `yourls:1.9.2` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9.2` - linux; arm variant v7 diff --git a/repos/yourls/remote/1.9.md b/repos/yourls/remote/1.9.md index 30ee0a277c5f3a..9536cca333e42e 100644 --- a/repos/yourls/remote/1.9.md +++ b/repos/yourls/remote/1.9.md @@ -1,7 +1,7 @@ ## `yourls:1.9` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -221,204 +221,204 @@ CMD ["apache2-foreground"] ### `yourls:1.9` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9` - linux; arm variant v7 diff --git a/repos/yourls/remote/1.md b/repos/yourls/remote/1.md index d4e470b1d1941d..3c6bfbf62dd237 100644 --- a/repos/yourls/remote/1.md +++ b/repos/yourls/remote/1.md @@ -1,7 +1,7 @@ ## `yourls:1` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -221,204 +221,204 @@ CMD ["apache2-foreground"] ### `yourls:1` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1` - linux; arm variant v7 diff --git a/repos/yourls/remote/apache.md b/repos/yourls/remote/apache.md index 128517e2805c0a..f981ff885f5dfe 100644 --- a/repos/yourls/remote/apache.md +++ b/repos/yourls/remote/apache.md @@ -1,7 +1,7 @@ ## `yourls:apache` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -221,204 +221,204 @@ CMD ["apache2-foreground"] ### `yourls:apache` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:apache` - linux; arm variant v7 diff --git a/repos/yourls/remote/fpm.md b/repos/yourls/remote/fpm.md index deb1b06a1966b0..8bf6a3e8c99e04 100644 --- a/repos/yourls/remote/fpm.md +++ b/repos/yourls/remote/fpm.md @@ -1,7 +1,7 @@ ## `yourls:fpm` ```console -$ docker pull yourls@sha256:b160d55b786752bd1fa112c94895b233083c95ff4f092a6bf142d623b8159135 +$ docker pull yourls@sha256:f11b7e50030c9ab184abbf765582d749b311f4beab7679fdf85d75c86587ed59 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -187,170 +187,170 @@ CMD ["php-fpm"] ### `yourls:fpm` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:eb9cef664f30d0491af193e8f867c33c159dc0f92d03a2e0e675827059488bd7 +$ docker pull yourls@sha256:5551d495b81b3b9d615cd72d7f441e6950deddd63a354e77b458eb7665472347 ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **145.9 MB (145889756 bytes)** +- Total Size: **144.3 MB (144299790 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:57c9dd16c8cbd2f32c06a5e96068e22c691802ab0b20036d83bd50575db56119` +- Image ID: `sha256:85879a1ba48b7893b4960f1052ad16a0542acc3deb2c910d3e91de7df0083ecc` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["php-fpm"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:57 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:58 GMT COPY multi:869bde9dbeae74886a05c9e2107b3e3b4877116db8c6d9adbaff2719f9fb5262 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:58 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT RUN set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work.'; echo '; https://bugs.php.net/bug.php?id=73886'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf; mkdir -p "$PHP_INI_DIR/conf.d"; { echo '; https://github.com/docker-library/php/issues/878#issuecomment-938595965'; echo 'fastcgi.logging = Off'; } > "$PHP_INI_DIR/conf.d/docker-fpm.ini" -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT STOPSIGNAL SIGQUIT -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT EXPOSE 9000 -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT CMD ["php-fpm"] -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:43:06 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT CMD ["php-fpm"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b81a35202eb8af305c9a3ed54b183ded0119c0823eaa1cda0ead2cfbb5da5770` - Last Modified: Fri, 09 Jun 2023 01:22:10 GMT - Size: 12.3 MB (12335271 bytes) + - `sha256:d2afa832b836b845a2dc2a3e3bbe1531cb856da2e81f2b78f6a7a047305c728d` + Last Modified: Tue, 13 Jun 2023 09:20:08 GMT + Size: 12.3 MB (12335264 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:130ced327ac02e3adb58a6373017639c5e91d0ab24ad382c36ee9f0caa51a8ee` - Last Modified: Fri, 09 Jun 2023 01:22:09 GMT + - `sha256:c69d586fee5e97781923a99290af353d2bd6fe4b2a4fd7785d4602e53a72b401` + Last Modified: Tue, 13 Jun 2023 09:20:07 GMT Size: 492.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:91368e5d4f464835b2eceb362577440b4afbc36918095719f7047947a2e93229` - Last Modified: Fri, 09 Jun 2023 01:23:29 GMT - Size: 26.7 MB (26719076 bytes) + - `sha256:c0d9d13a176f3dc6bac787daf4bf2213f76ac2b252b7e5e93a7025e8bb6a427a` + Last Modified: Tue, 13 Jun 2023 09:21:16 GMT + Size: 25.1 MB (25114153 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a43acc01aeb57691ea0636fc5e837755648a2eb17dc58b7b32fd227d6b44f575` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 2.5 KB (2454 bytes) + - `sha256:79012cd6c73666522981468b70412fc57104641a7ce9a0d5e2d57dd9bbc6fa9a` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 2.4 KB (2447 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:36e6c9a6483f0a104053315878d7fbc03cb7a22003e248ac695ee59b77dd21ae` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 248.0 B + - `sha256:135630323dc7d502872c6f7e0c7ba21822e5170165de2bb38b13bab2cc0f046b` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 243.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b30fa98124ac3ad573a251d2a5157a456243c584546827ddf31549559bc18434` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 9.2 KB (9184 bytes) + - `sha256:ec2b37c0f1f40c4ad03f33e14521552b80f4abd8411ff2c43547521c9b35e55f` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 9.2 KB (9178 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:fa65e149ac3c0e19686fc24ea65cee505ae909fc3334e33bdca6ac6dcfbfa6c0` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 154.7 KB (154671 bytes) + - `sha256:b4262930bcaaa232ac8c732a3cfdb0e7525bd09de63142bd1f0675bce92c0a06` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 154.7 KB (154661 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:48a14184e9e7494184f2be6cb1c606214e5344dd2aed4fdf71e10dfc41def165` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 330.0 B + - `sha256:df8a6f07f18ade6d5219eb9d4f9ee49dd7e351d4a88b33db82eb346f7fcd6ae3` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 328.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:f6b8d9b09f417d8ec4bbfd053dd55eee843094fc87a64072fd8e54048f6071f3` - Last Modified: Fri, 09 Jun 2023 01:43:50 GMT - Size: 4.1 MB (4073441 bytes) + - `sha256:3b153b969fdaefb27e7cecc556a0bcf7bc717c251ca245a8c031d9700bf907df` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 4.1 MB (4073448 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:9516500e94f0199c364b313f26b2ad792d910acd4b54fc751282e69e17bcb4c5` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT + - `sha256:acd1f4ae88dc6c4c94f0716ca2fc7d15b565d386f4476017ceb8dd66777006fa` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT Size: 2.0 KB (2048 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ab34fa4d8585615dcb2c75e0a180e81135b2a685f71d7836dcab455bf09d93f2` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 1.6 KB (1555 bytes) + - `sha256:71ce2df5736e7097eb02b891eff990015db93cd1ab9ab43ddafeaf42fbbbb67c` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 1.6 KB (1550 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:fpm` - linux; arm variant v7 diff --git a/repos/yourls/remote/latest.md b/repos/yourls/remote/latest.md index cd68e86f0f9796..bd81815726871a 100644 --- a/repos/yourls/remote/latest.md +++ b/repos/yourls/remote/latest.md @@ -1,7 +1,7 @@ ## `yourls:latest` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -221,204 +221,204 @@ CMD ["apache2-foreground"] ### `yourls:latest` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:latest` - linux; arm variant v7 diff --git a/repos/yourls/tag-details.md b/repos/yourls/tag-details.md index b2c006acd18734..e01543b5180383 100644 --- a/repos/yourls/tag-details.md +++ b/repos/yourls/tag-details.md @@ -22,7 +22,7 @@ ## `yourls:1` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -242,204 +242,204 @@ CMD ["apache2-foreground"] ### `yourls:1` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1` - linux; arm variant v7 @@ -1663,7 +1663,7 @@ CMD ["apache2-foreground"] ## `yourls:1-apache` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -1883,204 +1883,204 @@ CMD ["apache2-foreground"] ### `yourls:1-apache` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1-apache` - linux; arm variant v7 @@ -3304,7 +3304,7 @@ CMD ["apache2-foreground"] ## `yourls:1-fpm` ```console -$ docker pull yourls@sha256:b160d55b786752bd1fa112c94895b233083c95ff4f092a6bf142d623b8159135 +$ docker pull yourls@sha256:f11b7e50030c9ab184abbf765582d749b311f4beab7679fdf85d75c86587ed59 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -3490,170 +3490,170 @@ CMD ["php-fpm"] ### `yourls:1-fpm` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:eb9cef664f30d0491af193e8f867c33c159dc0f92d03a2e0e675827059488bd7 +$ docker pull yourls@sha256:5551d495b81b3b9d615cd72d7f441e6950deddd63a354e77b458eb7665472347 ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **145.9 MB (145889756 bytes)** +- Total Size: **144.3 MB (144299790 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:57c9dd16c8cbd2f32c06a5e96068e22c691802ab0b20036d83bd50575db56119` +- Image ID: `sha256:85879a1ba48b7893b4960f1052ad16a0542acc3deb2c910d3e91de7df0083ecc` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["php-fpm"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:57 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:58 GMT COPY multi:869bde9dbeae74886a05c9e2107b3e3b4877116db8c6d9adbaff2719f9fb5262 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:58 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT RUN set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work.'; echo '; https://bugs.php.net/bug.php?id=73886'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf; mkdir -p "$PHP_INI_DIR/conf.d"; { echo '; https://github.com/docker-library/php/issues/878#issuecomment-938595965'; echo 'fastcgi.logging = Off'; } > "$PHP_INI_DIR/conf.d/docker-fpm.ini" -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT STOPSIGNAL SIGQUIT -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT EXPOSE 9000 -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT CMD ["php-fpm"] -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:43:06 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT CMD ["php-fpm"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b81a35202eb8af305c9a3ed54b183ded0119c0823eaa1cda0ead2cfbb5da5770` - Last Modified: Fri, 09 Jun 2023 01:22:10 GMT - Size: 12.3 MB (12335271 bytes) + - `sha256:d2afa832b836b845a2dc2a3e3bbe1531cb856da2e81f2b78f6a7a047305c728d` + Last Modified: Tue, 13 Jun 2023 09:20:08 GMT + Size: 12.3 MB (12335264 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:130ced327ac02e3adb58a6373017639c5e91d0ab24ad382c36ee9f0caa51a8ee` - Last Modified: Fri, 09 Jun 2023 01:22:09 GMT + - `sha256:c69d586fee5e97781923a99290af353d2bd6fe4b2a4fd7785d4602e53a72b401` + Last Modified: Tue, 13 Jun 2023 09:20:07 GMT Size: 492.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:91368e5d4f464835b2eceb362577440b4afbc36918095719f7047947a2e93229` - Last Modified: Fri, 09 Jun 2023 01:23:29 GMT - Size: 26.7 MB (26719076 bytes) + - `sha256:c0d9d13a176f3dc6bac787daf4bf2213f76ac2b252b7e5e93a7025e8bb6a427a` + Last Modified: Tue, 13 Jun 2023 09:21:16 GMT + Size: 25.1 MB (25114153 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a43acc01aeb57691ea0636fc5e837755648a2eb17dc58b7b32fd227d6b44f575` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 2.5 KB (2454 bytes) + - `sha256:79012cd6c73666522981468b70412fc57104641a7ce9a0d5e2d57dd9bbc6fa9a` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 2.4 KB (2447 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:36e6c9a6483f0a104053315878d7fbc03cb7a22003e248ac695ee59b77dd21ae` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 248.0 B + - `sha256:135630323dc7d502872c6f7e0c7ba21822e5170165de2bb38b13bab2cc0f046b` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 243.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b30fa98124ac3ad573a251d2a5157a456243c584546827ddf31549559bc18434` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 9.2 KB (9184 bytes) + - `sha256:ec2b37c0f1f40c4ad03f33e14521552b80f4abd8411ff2c43547521c9b35e55f` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 9.2 KB (9178 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:fa65e149ac3c0e19686fc24ea65cee505ae909fc3334e33bdca6ac6dcfbfa6c0` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 154.7 KB (154671 bytes) + - `sha256:b4262930bcaaa232ac8c732a3cfdb0e7525bd09de63142bd1f0675bce92c0a06` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 154.7 KB (154661 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:48a14184e9e7494184f2be6cb1c606214e5344dd2aed4fdf71e10dfc41def165` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 330.0 B + - `sha256:df8a6f07f18ade6d5219eb9d4f9ee49dd7e351d4a88b33db82eb346f7fcd6ae3` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 328.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:f6b8d9b09f417d8ec4bbfd053dd55eee843094fc87a64072fd8e54048f6071f3` - Last Modified: Fri, 09 Jun 2023 01:43:50 GMT - Size: 4.1 MB (4073441 bytes) + - `sha256:3b153b969fdaefb27e7cecc556a0bcf7bc717c251ca245a8c031d9700bf907df` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 4.1 MB (4073448 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:9516500e94f0199c364b313f26b2ad792d910acd4b54fc751282e69e17bcb4c5` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT + - `sha256:acd1f4ae88dc6c4c94f0716ca2fc7d15b565d386f4476017ceb8dd66777006fa` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT Size: 2.0 KB (2048 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ab34fa4d8585615dcb2c75e0a180e81135b2a685f71d7836dcab455bf09d93f2` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 1.6 KB (1555 bytes) + - `sha256:71ce2df5736e7097eb02b891eff990015db93cd1ab9ab43ddafeaf42fbbbb67c` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 1.6 KB (1550 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1-fpm` - linux; arm variant v7 @@ -5914,7 +5914,7 @@ CMD ["php-fpm"] ## `yourls:1.9` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -6134,204 +6134,204 @@ CMD ["apache2-foreground"] ### `yourls:1.9` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9` - linux; arm variant v7 @@ -7555,7 +7555,7 @@ CMD ["apache2-foreground"] ## `yourls:1.9-apache` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -7775,204 +7775,204 @@ CMD ["apache2-foreground"] ### `yourls:1.9-apache` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9-apache` - linux; arm variant v7 @@ -9196,7 +9196,7 @@ CMD ["apache2-foreground"] ## `yourls:1.9-fpm` ```console -$ docker pull yourls@sha256:b160d55b786752bd1fa112c94895b233083c95ff4f092a6bf142d623b8159135 +$ docker pull yourls@sha256:f11b7e50030c9ab184abbf765582d749b311f4beab7679fdf85d75c86587ed59 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -9382,170 +9382,170 @@ CMD ["php-fpm"] ### `yourls:1.9-fpm` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:eb9cef664f30d0491af193e8f867c33c159dc0f92d03a2e0e675827059488bd7 +$ docker pull yourls@sha256:5551d495b81b3b9d615cd72d7f441e6950deddd63a354e77b458eb7665472347 ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **145.9 MB (145889756 bytes)** +- Total Size: **144.3 MB (144299790 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:57c9dd16c8cbd2f32c06a5e96068e22c691802ab0b20036d83bd50575db56119` +- Image ID: `sha256:85879a1ba48b7893b4960f1052ad16a0542acc3deb2c910d3e91de7df0083ecc` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["php-fpm"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:57 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:58 GMT COPY multi:869bde9dbeae74886a05c9e2107b3e3b4877116db8c6d9adbaff2719f9fb5262 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:58 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT RUN set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work.'; echo '; https://bugs.php.net/bug.php?id=73886'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf; mkdir -p "$PHP_INI_DIR/conf.d"; { echo '; https://github.com/docker-library/php/issues/878#issuecomment-938595965'; echo 'fastcgi.logging = Off'; } > "$PHP_INI_DIR/conf.d/docker-fpm.ini" -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT STOPSIGNAL SIGQUIT -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT EXPOSE 9000 -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT CMD ["php-fpm"] -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:43:06 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT CMD ["php-fpm"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b81a35202eb8af305c9a3ed54b183ded0119c0823eaa1cda0ead2cfbb5da5770` - Last Modified: Fri, 09 Jun 2023 01:22:10 GMT - Size: 12.3 MB (12335271 bytes) + - `sha256:d2afa832b836b845a2dc2a3e3bbe1531cb856da2e81f2b78f6a7a047305c728d` + Last Modified: Tue, 13 Jun 2023 09:20:08 GMT + Size: 12.3 MB (12335264 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:130ced327ac02e3adb58a6373017639c5e91d0ab24ad382c36ee9f0caa51a8ee` - Last Modified: Fri, 09 Jun 2023 01:22:09 GMT + - `sha256:c69d586fee5e97781923a99290af353d2bd6fe4b2a4fd7785d4602e53a72b401` + Last Modified: Tue, 13 Jun 2023 09:20:07 GMT Size: 492.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:91368e5d4f464835b2eceb362577440b4afbc36918095719f7047947a2e93229` - Last Modified: Fri, 09 Jun 2023 01:23:29 GMT - Size: 26.7 MB (26719076 bytes) + - `sha256:c0d9d13a176f3dc6bac787daf4bf2213f76ac2b252b7e5e93a7025e8bb6a427a` + Last Modified: Tue, 13 Jun 2023 09:21:16 GMT + Size: 25.1 MB (25114153 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a43acc01aeb57691ea0636fc5e837755648a2eb17dc58b7b32fd227d6b44f575` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 2.5 KB (2454 bytes) + - `sha256:79012cd6c73666522981468b70412fc57104641a7ce9a0d5e2d57dd9bbc6fa9a` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 2.4 KB (2447 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:36e6c9a6483f0a104053315878d7fbc03cb7a22003e248ac695ee59b77dd21ae` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 248.0 B + - `sha256:135630323dc7d502872c6f7e0c7ba21822e5170165de2bb38b13bab2cc0f046b` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 243.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b30fa98124ac3ad573a251d2a5157a456243c584546827ddf31549559bc18434` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 9.2 KB (9184 bytes) + - `sha256:ec2b37c0f1f40c4ad03f33e14521552b80f4abd8411ff2c43547521c9b35e55f` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 9.2 KB (9178 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:fa65e149ac3c0e19686fc24ea65cee505ae909fc3334e33bdca6ac6dcfbfa6c0` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 154.7 KB (154671 bytes) + - `sha256:b4262930bcaaa232ac8c732a3cfdb0e7525bd09de63142bd1f0675bce92c0a06` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 154.7 KB (154661 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:48a14184e9e7494184f2be6cb1c606214e5344dd2aed4fdf71e10dfc41def165` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 330.0 B + - `sha256:df8a6f07f18ade6d5219eb9d4f9ee49dd7e351d4a88b33db82eb346f7fcd6ae3` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 328.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:f6b8d9b09f417d8ec4bbfd053dd55eee843094fc87a64072fd8e54048f6071f3` - Last Modified: Fri, 09 Jun 2023 01:43:50 GMT - Size: 4.1 MB (4073441 bytes) + - `sha256:3b153b969fdaefb27e7cecc556a0bcf7bc717c251ca245a8c031d9700bf907df` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 4.1 MB (4073448 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:9516500e94f0199c364b313f26b2ad792d910acd4b54fc751282e69e17bcb4c5` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT + - `sha256:acd1f4ae88dc6c4c94f0716ca2fc7d15b565d386f4476017ceb8dd66777006fa` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT Size: 2.0 KB (2048 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ab34fa4d8585615dcb2c75e0a180e81135b2a685f71d7836dcab455bf09d93f2` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 1.6 KB (1555 bytes) + - `sha256:71ce2df5736e7097eb02b891eff990015db93cd1ab9ab43ddafeaf42fbbbb67c` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 1.6 KB (1550 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9-fpm` - linux; arm variant v7 @@ -11806,7 +11806,7 @@ CMD ["php-fpm"] ## `yourls:1.9.2` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -12026,204 +12026,204 @@ CMD ["apache2-foreground"] ### `yourls:1.9.2` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9.2` - linux; arm variant v7 @@ -13447,7 +13447,7 @@ CMD ["apache2-foreground"] ## `yourls:1.9.2-apache` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -13667,204 +13667,204 @@ CMD ["apache2-foreground"] ### `yourls:1.9.2-apache` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9.2-apache` - linux; arm variant v7 @@ -15088,7 +15088,7 @@ CMD ["apache2-foreground"] ## `yourls:1.9.2-fpm` ```console -$ docker pull yourls@sha256:b160d55b786752bd1fa112c94895b233083c95ff4f092a6bf142d623b8159135 +$ docker pull yourls@sha256:f11b7e50030c9ab184abbf765582d749b311f4beab7679fdf85d75c86587ed59 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -15274,170 +15274,170 @@ CMD ["php-fpm"] ### `yourls:1.9.2-fpm` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:eb9cef664f30d0491af193e8f867c33c159dc0f92d03a2e0e675827059488bd7 +$ docker pull yourls@sha256:5551d495b81b3b9d615cd72d7f441e6950deddd63a354e77b458eb7665472347 ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **145.9 MB (145889756 bytes)** +- Total Size: **144.3 MB (144299790 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:57c9dd16c8cbd2f32c06a5e96068e22c691802ab0b20036d83bd50575db56119` +- Image ID: `sha256:85879a1ba48b7893b4960f1052ad16a0542acc3deb2c910d3e91de7df0083ecc` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["php-fpm"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:57 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:58 GMT COPY multi:869bde9dbeae74886a05c9e2107b3e3b4877116db8c6d9adbaff2719f9fb5262 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:58 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT RUN set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work.'; echo '; https://bugs.php.net/bug.php?id=73886'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf; mkdir -p "$PHP_INI_DIR/conf.d"; { echo '; https://github.com/docker-library/php/issues/878#issuecomment-938595965'; echo 'fastcgi.logging = Off'; } > "$PHP_INI_DIR/conf.d/docker-fpm.ini" -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT STOPSIGNAL SIGQUIT -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT EXPOSE 9000 -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT CMD ["php-fpm"] -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:43:06 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT CMD ["php-fpm"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b81a35202eb8af305c9a3ed54b183ded0119c0823eaa1cda0ead2cfbb5da5770` - Last Modified: Fri, 09 Jun 2023 01:22:10 GMT - Size: 12.3 MB (12335271 bytes) + - `sha256:d2afa832b836b845a2dc2a3e3bbe1531cb856da2e81f2b78f6a7a047305c728d` + Last Modified: Tue, 13 Jun 2023 09:20:08 GMT + Size: 12.3 MB (12335264 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:130ced327ac02e3adb58a6373017639c5e91d0ab24ad382c36ee9f0caa51a8ee` - Last Modified: Fri, 09 Jun 2023 01:22:09 GMT + - `sha256:c69d586fee5e97781923a99290af353d2bd6fe4b2a4fd7785d4602e53a72b401` + Last Modified: Tue, 13 Jun 2023 09:20:07 GMT Size: 492.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:91368e5d4f464835b2eceb362577440b4afbc36918095719f7047947a2e93229` - Last Modified: Fri, 09 Jun 2023 01:23:29 GMT - Size: 26.7 MB (26719076 bytes) + - `sha256:c0d9d13a176f3dc6bac787daf4bf2213f76ac2b252b7e5e93a7025e8bb6a427a` + Last Modified: Tue, 13 Jun 2023 09:21:16 GMT + Size: 25.1 MB (25114153 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a43acc01aeb57691ea0636fc5e837755648a2eb17dc58b7b32fd227d6b44f575` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 2.5 KB (2454 bytes) + - `sha256:79012cd6c73666522981468b70412fc57104641a7ce9a0d5e2d57dd9bbc6fa9a` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 2.4 KB (2447 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:36e6c9a6483f0a104053315878d7fbc03cb7a22003e248ac695ee59b77dd21ae` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 248.0 B + - `sha256:135630323dc7d502872c6f7e0c7ba21822e5170165de2bb38b13bab2cc0f046b` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 243.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b30fa98124ac3ad573a251d2a5157a456243c584546827ddf31549559bc18434` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 9.2 KB (9184 bytes) + - `sha256:ec2b37c0f1f40c4ad03f33e14521552b80f4abd8411ff2c43547521c9b35e55f` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 9.2 KB (9178 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:fa65e149ac3c0e19686fc24ea65cee505ae909fc3334e33bdca6ac6dcfbfa6c0` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 154.7 KB (154671 bytes) + - `sha256:b4262930bcaaa232ac8c732a3cfdb0e7525bd09de63142bd1f0675bce92c0a06` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 154.7 KB (154661 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:48a14184e9e7494184f2be6cb1c606214e5344dd2aed4fdf71e10dfc41def165` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 330.0 B + - `sha256:df8a6f07f18ade6d5219eb9d4f9ee49dd7e351d4a88b33db82eb346f7fcd6ae3` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 328.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:f6b8d9b09f417d8ec4bbfd053dd55eee843094fc87a64072fd8e54048f6071f3` - Last Modified: Fri, 09 Jun 2023 01:43:50 GMT - Size: 4.1 MB (4073441 bytes) + - `sha256:3b153b969fdaefb27e7cecc556a0bcf7bc717c251ca245a8c031d9700bf907df` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 4.1 MB (4073448 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:9516500e94f0199c364b313f26b2ad792d910acd4b54fc751282e69e17bcb4c5` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT + - `sha256:acd1f4ae88dc6c4c94f0716ca2fc7d15b565d386f4476017ceb8dd66777006fa` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT Size: 2.0 KB (2048 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ab34fa4d8585615dcb2c75e0a180e81135b2a685f71d7836dcab455bf09d93f2` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 1.6 KB (1555 bytes) + - `sha256:71ce2df5736e7097eb02b891eff990015db93cd1ab9ab43ddafeaf42fbbbb67c` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 1.6 KB (1550 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:1.9.2-fpm` - linux; arm variant v7 @@ -17698,7 +17698,7 @@ CMD ["php-fpm"] ## `yourls:apache` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -17918,204 +17918,204 @@ CMD ["apache2-foreground"] ### `yourls:apache` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:apache` - linux; arm variant v7 @@ -19339,7 +19339,7 @@ CMD ["apache2-foreground"] ## `yourls:fpm` ```console -$ docker pull yourls@sha256:b160d55b786752bd1fa112c94895b233083c95ff4f092a6bf142d623b8159135 +$ docker pull yourls@sha256:f11b7e50030c9ab184abbf765582d749b311f4beab7679fdf85d75c86587ed59 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -19525,170 +19525,170 @@ CMD ["php-fpm"] ### `yourls:fpm` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:eb9cef664f30d0491af193e8f867c33c159dc0f92d03a2e0e675827059488bd7 +$ docker pull yourls@sha256:5551d495b81b3b9d615cd72d7f441e6950deddd63a354e77b458eb7665472347 ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **145.9 MB (145889756 bytes)** +- Total Size: **144.3 MB (144299790 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:57c9dd16c8cbd2f32c06a5e96068e22c691802ab0b20036d83bd50575db56119` +- Image ID: `sha256:85879a1ba48b7893b4960f1052ad16a0542acc3deb2c910d3e91de7df0083ecc` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["php-fpm"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:24 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:28:09 GMT +# Tue, 13 Jun 2023 08:46:49 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:28:26 GMT +# Tue, 13 Jun 2023 08:47:03 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:57 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:39:44 GMT +# Tue, 13 Jun 2023 08:54:58 GMT COPY multi:869bde9dbeae74886a05c9e2107b3e3b4877116db8c6d9adbaff2719f9fb5262 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:39:45 GMT +# Tue, 13 Jun 2023 08:54:58 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:58 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT RUN set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work.'; echo '; https://bugs.php.net/bug.php?id=73886'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf; mkdir -p "$PHP_INI_DIR/conf.d"; { echo '; https://github.com/docker-library/php/issues/878#issuecomment-938595965'; echo 'fastcgi.logging = Off'; } > "$PHP_INI_DIR/conf.d/docker-fpm.ini" -# Fri, 09 Jun 2023 00:39:46 GMT +# Tue, 13 Jun 2023 08:54:59 GMT STOPSIGNAL SIGQUIT -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT EXPOSE 9000 -# Fri, 09 Jun 2023 00:39:47 GMT +# Tue, 13 Jun 2023 08:54:59 GMT CMD ["php-fpm"] -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:04 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:50 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:51 GMT +# Tue, 13 Jun 2023 18:00:05 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:43:06 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:21 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:43:07 GMT +# Tue, 13 Jun 2023 18:00:22 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:43:09 GMT +# Tue, 13 Jun 2023 18:00:24 GMT CMD ["php-fpm"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b81a35202eb8af305c9a3ed54b183ded0119c0823eaa1cda0ead2cfbb5da5770` - Last Modified: Fri, 09 Jun 2023 01:22:10 GMT - Size: 12.3 MB (12335271 bytes) + - `sha256:d2afa832b836b845a2dc2a3e3bbe1531cb856da2e81f2b78f6a7a047305c728d` + Last Modified: Tue, 13 Jun 2023 09:20:08 GMT + Size: 12.3 MB (12335264 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:130ced327ac02e3adb58a6373017639c5e91d0ab24ad382c36ee9f0caa51a8ee` - Last Modified: Fri, 09 Jun 2023 01:22:09 GMT + - `sha256:c69d586fee5e97781923a99290af353d2bd6fe4b2a4fd7785d4602e53a72b401` + Last Modified: Tue, 13 Jun 2023 09:20:07 GMT Size: 492.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:91368e5d4f464835b2eceb362577440b4afbc36918095719f7047947a2e93229` - Last Modified: Fri, 09 Jun 2023 01:23:29 GMT - Size: 26.7 MB (26719076 bytes) + - `sha256:c0d9d13a176f3dc6bac787daf4bf2213f76ac2b252b7e5e93a7025e8bb6a427a` + Last Modified: Tue, 13 Jun 2023 09:21:16 GMT + Size: 25.1 MB (25114153 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a43acc01aeb57691ea0636fc5e837755648a2eb17dc58b7b32fd227d6b44f575` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 2.5 KB (2454 bytes) + - `sha256:79012cd6c73666522981468b70412fc57104641a7ce9a0d5e2d57dd9bbc6fa9a` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 2.4 KB (2447 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:36e6c9a6483f0a104053315878d7fbc03cb7a22003e248ac695ee59b77dd21ae` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 248.0 B + - `sha256:135630323dc7d502872c6f7e0c7ba21822e5170165de2bb38b13bab2cc0f046b` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 243.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:b30fa98124ac3ad573a251d2a5157a456243c584546827ddf31549559bc18434` - Last Modified: Fri, 09 Jun 2023 01:23:25 GMT - Size: 9.2 KB (9184 bytes) + - `sha256:ec2b37c0f1f40c4ad03f33e14521552b80f4abd8411ff2c43547521c9b35e55f` + Last Modified: Tue, 13 Jun 2023 09:21:12 GMT + Size: 9.2 KB (9178 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:fa65e149ac3c0e19686fc24ea65cee505ae909fc3334e33bdca6ac6dcfbfa6c0` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 154.7 KB (154671 bytes) + - `sha256:b4262930bcaaa232ac8c732a3cfdb0e7525bd09de63142bd1f0675bce92c0a06` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 154.7 KB (154661 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:48a14184e9e7494184f2be6cb1c606214e5344dd2aed4fdf71e10dfc41def165` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 330.0 B + - `sha256:df8a6f07f18ade6d5219eb9d4f9ee49dd7e351d4a88b33db82eb346f7fcd6ae3` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT + Size: 328.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:f6b8d9b09f417d8ec4bbfd053dd55eee843094fc87a64072fd8e54048f6071f3` - Last Modified: Fri, 09 Jun 2023 01:43:50 GMT - Size: 4.1 MB (4073441 bytes) + - `sha256:3b153b969fdaefb27e7cecc556a0bcf7bc717c251ca245a8c031d9700bf907df` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 4.1 MB (4073448 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:9516500e94f0199c364b313f26b2ad792d910acd4b54fc751282e69e17bcb4c5` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT + - `sha256:acd1f4ae88dc6c4c94f0716ca2fc7d15b565d386f4476017ceb8dd66777006fa` + Last Modified: Tue, 13 Jun 2023 18:01:08 GMT Size: 2.0 KB (2048 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ab34fa4d8585615dcb2c75e0a180e81135b2a685f71d7836dcab455bf09d93f2` - Last Modified: Fri, 09 Jun 2023 01:43:49 GMT - Size: 1.6 KB (1555 bytes) + - `sha256:71ce2df5736e7097eb02b891eff990015db93cd1ab9ab43ddafeaf42fbbbb67c` + Last Modified: Tue, 13 Jun 2023 18:01:09 GMT + Size: 1.6 KB (1550 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:fpm` - linux; arm variant v7 @@ -21949,7 +21949,7 @@ CMD ["php-fpm"] ## `yourls:latest` ```console -$ docker pull yourls@sha256:7880ef25cde7c92cc179d089b4724b894630218758b1e03922236dc06224b5d0 +$ docker pull yourls@sha256:e2647881bf03fa64907678d60c9afe9c2d1693843a8f353d4224547503495190 ``` - Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json` @@ -22169,204 +22169,204 @@ CMD ["apache2-foreground"] ### `yourls:latest` - linux; arm variant v5 ```console -$ docker pull yourls@sha256:768e5548c6887cd7b0147b16761f9bf06ade8bf11d2d6a5c1b96162661b29f22 +$ docker pull yourls@sha256:16a570b2ba057837287148524684f6eb357aaceeff39c3f26f3286b0d74d3ccd ``` - Docker Version: 20.10.23 - Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json` -- Total Size: **149.5 MB (149504651 bytes)** +- Total Size: **148.1 MB (148124703 bytes)** (compressed transfer size, not on-disk size) -- Image ID: `sha256:7ca96d3411ab58eadd3b170b547aecad17bba369d1f24b58568196dd29c4f3f1` +- Image ID: `sha256:75d146b6704d1bbd67f27549a76530a51b5c8fa68ffcc1de11ef07254e80ae82` - Entrypoint: `["docker-entrypoint.sh"]` - Default Command: `["apache2-foreground"]` ```dockerfile -# Tue, 23 May 2023 00:48:41 GMT -ADD file:868f634f5ddb80ed9e9c719ccaf5d564d96fe819f0b000ecc734311baf5da99b in / -# Tue, 23 May 2023 00:48:42 GMT +# Mon, 12 Jun 2023 23:48:46 GMT +ADD file:b2773fa62bdb5672863ef317ee1b58de2a6074fe6aa0d8287a7cd0999028d7d2 in / +# Mon, 12 Jun 2023 23:48:47 GMT CMD ["bash"] -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT RUN set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php -# Tue, 23 May 2023 04:04:53 GMT +# Tue, 13 Jun 2023 08:35:03 GMT ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c -# Tue, 23 May 2023 04:05:14 GMT +# Tue, 13 Jun 2023 08:35:22 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; rm -rf /var/lib/apt/lists/* -# Tue, 23 May 2023 04:05:15 GMT +# Tue, 13 Jun 2023 08:35:23 GMT ENV PHP_INI_DIR=/usr/local/etc/php -# Tue, 23 May 2023 04:05:16 GMT +# Tue, 13 Jun 2023 08:35:23 GMT RUN set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:10 GMT ENV APACHE_CONFDIR=/etc/apache2 -# Tue, 23 May 2023 04:08:30 GMT +# Tue, 13 Jun 2023 08:38:11 GMT ENV APACHE_ENVVARS=/etc/apache2/envvars -# Tue, 23 May 2023 04:08:43 GMT +# Tue, 13 Jun 2023 08:38:23 GMT RUN set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; rm -rf /var/lib/apt/lists/*; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" -# Tue, 23 May 2023 04:08:44 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN a2dismod mpm_event && a2enmod mpm_prefork -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT RUN { echo ''; echo '\tSetHandler application/x-httpd-php'; echo ''; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo ''; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo ''; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:24 GMT ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:38:25 GMT ENV PHP_LDFLAGS=-Wl,-O1 -pie -# Tue, 23 May 2023 04:08:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC -# Fri, 09 Jun 2023 00:31:45 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_VERSION=8.2.7 -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_URL=https://www.php.net/distributions/php-8.2.7.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.7.tar.xz.asc -# Fri, 09 Jun 2023 00:31:46 GMT +# Tue, 13 Jun 2023 08:49:42 GMT ENV PHP_SHA256=4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0 -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -# Fri, 09 Jun 2023 00:32:01 GMT +# Tue, 13 Jun 2023 08:49:56 GMT COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:24 GMT RUN set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version -# Fri, 09 Jun 2023 00:35:55 GMT +# Tue, 13 Jun 2023 08:52:25 GMT COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT RUN docker-php-ext-enable sodium -# Fri, 09 Jun 2023 00:35:56 GMT +# Tue, 13 Jun 2023 08:52:25 GMT ENTRYPOINT ["docker-php-entrypoint"] -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:25 GMT STOPSIGNAL SIGWINCH -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT WORKDIR /var/www/html -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT EXPOSE 80 -# Fri, 09 Jun 2023 00:35:57 GMT +# Tue, 13 Jun 2023 08:52:26 GMT CMD ["apache2-foreground"] -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.title=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.description=Your Own URL Shortener -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.url=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.documentation=https://yourls.org/ -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.vendor=YOURLS Org -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.authors=YOURLS -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL org.opencontainers.image.licenses=MIT -# Fri, 09 Jun 2023 01:42:27 GMT +# Tue, 13 Jun 2023 17:59:41 GMT LABEL io.artifacthub.package.readme-url=https://raw.githubusercontent.com/YOURLS/YOURLS/master/README.md -# Fri, 09 Jun 2023 01:42:43 GMT +# Tue, 13 Jun 2023 17:59:57 GMT RUN set -eux; docker-php-ext-install -j "$(nproc)" bcmath opcache pdo_mysql mysqli -# Fri, 09 Jun 2023 01:42:44 GMT +# Tue, 13 Jun 2023 17:59:58 GMT RUN { echo 'opcache.memory_consumption=128'; echo 'opcache.interned_strings_buffer=8'; echo 'opcache.max_accelerated_files=4000'; echo 'opcache.revalidate_freq=2'; echo 'opcache.fast_shutdown=1'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT RUN a2enmod rewrite expires -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ARG YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT LABEL org.opencontainers.image.version=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_VERSION=1.9.2 -# Fri, 09 Jun 2023 01:42:45 GMT +# Tue, 13 Jun 2023 17:59:59 GMT ENV YOURLS_SHA256=62a95ba766d62f3305d75944cbfe12d5a90c08c88fbf2f6e67150d36412b916f -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT RUN set -eux; curl -o yourls.tar.gz -fsSL "https://github.com/YOURLS/YOURLS/archive/${YOURLS_VERSION}.tar.gz"; echo "$YOURLS_SHA256 *yourls.tar.gz" | sha256sum -c -; tar -xf yourls.tar.gz -C /usr/src/; mv "/usr/src/YOURLS-${YOURLS_VERSION}" /usr/src/yourls; rm yourls.tar.gz; chown -R www-data:www-data /usr/src/yourls -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY --chown=www-data:www-datafile:f5584b9849b80034920f4de5f1297cb1be461f765f3437b87ddf6c86daa6499d in /usr/src/yourls/user/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:975ababf859e7cabd8184ab0b2b317a5d8d3ccb6f4922be7f2a5d28c20d075a2 in /usr/local/bin/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT COPY file:5b7ff05d0c98ad759c4bec0ef8a7ce74cae42e95b42564b55f43b341c2c3e3f5 in /usr/src/yourls/ -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:01 GMT ENTRYPOINT ["docker-entrypoint.sh"] -# Fri, 09 Jun 2023 01:42:47 GMT +# Tue, 13 Jun 2023 18:00:02 GMT CMD ["apache2-foreground"] ``` - Layers: - - `sha256:812967ccba449e7a96044b2d48ffc62816b22eb17641844c4dfffbe3b3ec6f21` - Last Modified: Tue, 23 May 2023 00:51:19 GMT - Size: 28.9 MB (28903411 bytes) + - `sha256:c04d7d6633d9b8cf1bfa9f6831ac7dd6f985411cb6307d91c6373085b09b8c19` + Last Modified: Mon, 12 Jun 2023 23:52:06 GMT + Size: 28.9 MB (28918779 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:12fc17e34ff4b57d48b2213d321677a8b76e69203a3bc2e94dda595c4c23939a` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 226.0 B + - `sha256:b51b0e36863672f5e2100f8e9128d8476f1c0e6a1b36a6333116977324a6eced` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 227.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c8c3a2e85b05d576cb5c7511634cad5898afbe57dcbeae2e4dccea271b30da15` - Last Modified: Tue, 23 May 2023 04:39:13 GMT - Size: 73.7 MB (73687078 bytes) + - `sha256:38d1a33df27a89118971966aa7191ecb202d283dbdd60b71911d6e330ade6320` + Last Modified: Tue, 13 Jun 2023 09:18:47 GMT + Size: 73.7 MB (73686704 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:382ef78f0b55b5931519e1caca61ea71be84c6dc01dedc439911259bd8d02f31` - Last Modified: Tue, 23 May 2023 04:39:01 GMT - Size: 271.0 B + - `sha256:ab55d7c10475ac6c09c243c9472b365aa6643213cf7dc21034e1bee1cd59945f` + Last Modified: Tue, 13 Jun 2023 09:18:34 GMT + Size: 268.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:aaeef986e8abeecce69fbd9ca0572263ac91aa4a7ca37c925607ca53b05fafbf` - Last Modified: Tue, 23 May 2023 04:39:54 GMT - Size: 18.5 MB (18548509 bytes) + - `sha256:8e839f4c7e31ce12c9042118c4b5ab0bc7bd1706933c3e35a178c340c9d8468d` + Last Modified: Tue, 13 Jun 2023 09:19:13 GMT + Size: 18.5 MB (18548553 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:05011c57ad5684b9fe263959051b62aaff78b3903be454d325cecb9a111fee50` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 473.0 B + - `sha256:81c973f94d314b5fb6bf6941b6c378d0c91a2005bb2e0bbbb05927abc9cd30b4` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 478.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:d1609c8afa71d73fc72c1cd93439857f710d49b26ffbcff8fa696e151f54234d` - Last Modified: Tue, 23 May 2023 04:39:51 GMT - Size: 513.0 B + - `sha256:f38613a85f906fb5b7e0b09dfc3f69e2aabe1bb7ae93e8710f93f470f2e82353` + Last Modified: Tue, 13 Jun 2023 09:19:09 GMT + Size: 512.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:33c040c265f7e98cf4dcfbd59c18b90ef420303dcaf40898be86d02311ac34e0` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 12.4 MB (12357308 bytes) + - `sha256:9ccd2a417385979c6c8dd4aae8664623c914c6089bbfd13e1e879a8669e94b2e` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 12.4 MB (12357284 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:6c35ae16e1e7fd28eb0d4788f525ce26d9ec33e4c262a4274cd5bb82096f9728` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 492.0 B + - `sha256:52274a406b9cd02864c28881b30df7192f0e557591a9a4a24a7bf6ab738836f1` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 491.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4fe4edf8b888038c95fd45f6121bd741f9707acfc48b3daf7e65f08920b04869` - Last Modified: Fri, 09 Jun 2023 01:23:02 GMT - Size: 11.8 MB (11770035 bytes) + - `sha256:8176371e981a27238936a8d3bf945b11bf4e3597b9d156a95c86246c8165c5c2` + Last Modified: Tue, 13 Jun 2023 09:20:50 GMT + Size: 10.4 MB (10375109 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3fc865870ba9c27543de23394d589d45cdaf68a235a67ab8aaa85935fa70941f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 2.5 KB (2460 bytes) + - `sha256:40a26dbdb12dd1d81bda379eb4a6732883adc5643072fc19be44c4522c2e965d` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 2.5 KB (2458 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:a0b46c023cea56f00106642146c953cc1dd5f62faa25a94cb22b4f3dd3a2b73f` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 247.0 B + - `sha256:eec9e93e4b9eabe97b6df0a1052dfc4aba8690ff4f60291ad327a994b3ee8793` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 246.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:4e2ab181451f13205f3c2b0bcc6ec24cf08384d92422f49c577b633f04c4621a` - Last Modified: Fri, 09 Jun 2023 01:22:58 GMT - Size: 896.0 B + - `sha256:2a9a2cf5703502de0c42393f46fc6da58d4c886b7f3784e828886695897963fc` + Last Modified: Tue, 13 Jun 2023 09:20:48 GMT + Size: 894.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:7d789c27a8751a9461a4cd0015a24da8064d46969fc3469ed62631d66e4a43ac` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 154.7 KB (154666 bytes) + - `sha256:f6518b1e5e585a2c900d04bdbd1b853c11ca49812080c354c3306bcfde62b6d4` + Last Modified: Tue, 13 Jun 2023 18:00:40 GMT + Size: 154.7 KB (154660 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ccbaecf5f2e7b9ee06b25af98619ef9be2dfbb641129c45a2d6e4335dec17dd8` - Last Modified: Fri, 09 Jun 2023 01:43:23 GMT - Size: 328.0 B + - `sha256:38290f970521a4c0ae3c66abb4d592582fade143d867db6c2c3e2a07229f31c9` + Last Modified: Tue, 13 Jun 2023 18:00:39 GMT + Size: 326.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:c5cbcda9d83c20dad5874d062d6135b84212f805bdd5e8d9f993aebfe2dd4c7c` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 350.0 B + - `sha256:5c0d147143676b4389093613da13601ea85792a8c9e96c8ab7a12f24ef544554` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 341.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:ca9f687d5a19caf5890befe63de1a884dc77ac45abe96d7f6f06290942ea622a` - Last Modified: Fri, 09 Jun 2023 01:43:22 GMT - Size: 4.1 MB (4073451 bytes) + - `sha256:067bfdee887d0c4bf64e96093f6be45f258e84d06dc04e5d324909747685709a` + Last Modified: Tue, 13 Jun 2023 18:00:38 GMT + Size: 4.1 MB (4073446 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:230050a36a5da6d96a1f709f8e8ae8efa82ad6e71d416c35a5cbeee3c7befee0` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 2.0 KB (2049 bytes) + - `sha256:9e368dfc0dbeff1e1e89c3b1ad86465ab86dd34b21a04ba444f6392ab2dec991` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 2.0 KB (2046 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:dc38deb7647cffc7fda11b125c63f7d1201dbf4e8575afb9375e40e08ef52b3f` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 1.6 KB (1556 bytes) + - `sha256:5f11b28a1a964798834a05410e3bc0ef63240317ab7ad78fd7ca06cdce2700af` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 1.6 KB (1554 bytes) MIME: application/vnd.docker.image.rootfs.diff.tar.gzip - - `sha256:3b713b5622d2d5de4d1aa0d34d0a1249557918aad1100adb18a711d9a4b0fa1e` - Last Modified: Fri, 09 Jun 2023 01:43:21 GMT - Size: 332.0 B + - `sha256:e0f82c529cf5ad537f5db05ba6b83f38640a03a0bd0d1a13ea5f4cc2baf23763` + Last Modified: Tue, 13 Jun 2023 18:00:37 GMT + Size: 327.0 B MIME: application/vnd.docker.image.rootfs.diff.tar.gzip ### `yourls:latest` - linux; arm variant v7