Skip to content

Latest commit

 

History

History
1684 lines (1602 loc) · 135 KB

apache.md

File metadata and controls

1684 lines (1602 loc) · 135 KB

wordpress:apache

$ docker pull wordpress@sha256:a63692e302fa9a6ca9e19dc84c9dfc91280b5515bd8b4f70c9d7722073bf7190
  • Manifest MIME: application/vnd.oci.image.index.v1+json
  • Platforms: 16
    • linux; amd64
    • unknown; unknown
    • linux; arm variant v5
    • unknown; unknown
    • linux; arm variant v7
    • unknown; unknown
    • linux; arm64 variant v8
    • unknown; unknown
    • linux; 386
    • unknown; unknown
    • linux; mips64le
    • unknown; unknown
    • linux; ppc64le
    • unknown; unknown
    • linux; s390x
    • unknown; unknown

wordpress:apache - linux; amd64

$ docker pull wordpress@sha256:e2142619595f15939794ee5594ee5cb17792bd71901680dd7b81ccbbdf55fffb
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 240.8 MB (240815521 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:d2a2d7e671fde0f681182b0bb82cebc0fdcdb3d2a0adb5769cd751d21bacb5cb
  • Entrypoint: ["docker-entrypoint.sh"]
  • Default Command: ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
ADD file:b24689567a7c604de93e4ef1dc87c372514f692556744da43925c575b4f80df6 in / 
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["bash"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	{ 		echo 'Package: php*'; 		echo 'Pin: release *'; 		echo 'Pin-Priority: -1'; 	} > /etc/apt/preferences.d/no-debian-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHPIZE_DEPS=autoconf 		dpkg-dev 		file 		g++ 		gcc 		libc-dev 		make 		pkg-config 		re2c
# Mon, 24 Jun 2024 19:12:59 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/*
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_INI_DIR=/usr/local/etc/php
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_CONFDIR=/etc/apache2
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_ENVVARS=/etc/apache2/envvars
# Mon, 24 Jun 2024 19:12:59 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" 		"$APACHE_RUN_DIR/socks" 	; 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"
# Mon, 24 Jun 2024 19:12:59 GMT
RUN a2dismod mpm_event && a2enmod mpm_prefork
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo '<FilesMatch \.php$>'; 		echo '\tSetHandler application/x-httpd-php'; 		echo '</FilesMatch>'; 		echo; 		echo 'DirectoryIndex disabled'; 		echo 'DirectoryIndex index.php index.html'; 		echo; 		echo '<Directory /var/www/>'; 		echo '\tOptions -Indexes'; 		echo '\tAllowOverride All'; 		echo '</Directory>'; 	} | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" 	&& a2enconf docker-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_LDFLAGS=-Wl,-O1 -pie
# Mon, 24 Jun 2024 19:12:59 GMT
ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_VERSION=8.2.21
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_URL=https://www.php.net/distributions/php-8.2.21.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.21.tar.xz.asc
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_SHA256=8cc44d51bb2506399ec176f70fe110f0c9e1f7d852a5303a2cd1403402199707
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 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" 		PHP_BUILD_PROVIDER='https://github.com/docker-library/php' 		PHP_UNAME='Linux - Docker' 	; 	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-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" = 'riscv64-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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
RUN docker-php-ext-enable sodium
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-php-entrypoint"]
# Mon, 24 Jun 2024 19:12:59 GMT
STOPSIGNAL SIGWINCH
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
WORKDIR /var/www/html
# Mon, 24 Jun 2024 19:12:59 GMT
EXPOSE 80
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ghostscript 	; 	rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -ex; 		savedAptMark="$(apt-mark showmanual)"; 		apt-get update; 	apt-get install -y --no-install-recommends 		libfreetype6-dev 		libicu-dev 		libjpeg-dev 		libmagickwand-dev 		libpng-dev 		libwebp-dev 		libzip-dev 	; 		docker-php-ext-configure gd 		--with-freetype 		--with-jpeg 		--with-webp 	; 	docker-php-ext-install -j "$(nproc)" 		bcmath 		exif 		gd 		intl 		mysqli 		zip 	; 	curl -fL -o imagick.tgz 'https://pecl.php.net/get/imagick-3.7.0.tgz'; 	echo '5a364354109029d224bcbb2e82e15b248be9b641227f45e63425c06531792d3e *imagick.tgz' | sha256sum -c -; 	tar --extract --directory /tmp --file imagick.tgz imagick-3.7.0; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php; 	test "$(grep -c '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php)" = '1'; 	sed -i -e 's!^//#endif$!#endif!' /tmp/imagick-3.7.0/Imagick.stub.php; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php && exit 1 || :; 	docker-php-ext-install /tmp/imagick-3.7.0; 	rm -rf imagick.tgz /tmp/imagick-3.7.0; 		out="$(php -r 'exit(0);')"; 	[ -z "$out" ]; 	err="$(php -r 'exit(0);' 3>&1 1>&2 2>&3)"; 	[ -z "$err" ]; 		extDir="$(php -r 'echo ini_get("extension_dir");')"; 	[ -d "$extDir" ]; 	apt-mark auto '.*' > /dev/null; 	apt-mark manual $savedAptMark; 	ldd "$extDir"/*.so 		| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| sort -u 		| xargs -r dpkg-query --search 		| cut -d: -f1 		| sort -u 		| xargs -rt apt-mark manual; 		apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	rm -rf /var/lib/apt/lists/*; 		! { ldd "$extDir"/*.so | grep 'not found'; }; 	err="$(php --version 3>&1 1>&2 2>&3)"; 	[ -z "$err" ] # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	docker-php-ext-enable opcache; 	{ 		echo 'opcache.memory_consumption=128'; 		echo 'opcache.interned_strings_buffer=8'; 		echo 'opcache.max_accelerated_files=4000'; 		echo 'opcache.revalidate_freq=2'; 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; 		echo 'display_errors = Off'; 		echo 'display_startup_errors = Off'; 		echo 'log_errors = On'; 		echo 'error_log = /dev/stderr'; 		echo 'log_errors_max_len = 1024'; 		echo 'ignore_repeated_errors = On'; 		echo 'ignore_repeated_source = Off'; 		echo 'html_errors = Off'; 	} > /usr/local/etc/php/conf.d/error-logging.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	a2enmod rewrite expires; 		a2enmod remoteip; 	{ 		echo 'RemoteIPHeader X-Forwarded-For'; 		echo 'RemoteIPInternalProxy 10.0.0.0/8'; 		echo 'RemoteIPInternalProxy 172.16.0.0/12'; 		echo 'RemoteIPInternalProxy 192.168.0.0/16'; 		echo 'RemoteIPInternalProxy 169.254.0.0/16'; 		echo 'RemoteIPInternalProxy 127.0.0.0/8'; 	} > /etc/apache2/conf-available/remoteip.conf; 	a2enconf remoteip; 	find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	version='6.5.5'; 	sha1='8d6a705f1b59367ec584a5fd4ab84aa53dd01c85'; 		curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; 	echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; 		tar -xzf wordpress.tar.gz -C /usr/src/; 	rm wordpress.tar.gz; 		[ ! -e /usr/src/wordpress/.htaccess ]; 	{ 		echo '# BEGIN WordPress'; 		echo ''; 		echo 'RewriteEngine On'; 		echo 'RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]'; 		echo 'RewriteBase /'; 		echo 'RewriteRule ^index\.php$ - [L]'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-f'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-d'; 		echo 'RewriteRule . /index.php [L]'; 		echo ''; 		echo '# END WordPress'; 	} > /usr/src/wordpress/.htaccess; 		chown -R www-data:www-data /usr/src/wordpress; 	mkdir wp-content; 	for dir in /usr/src/wordpress/wp-content/*/ cache; do 		dir="$(basename "${dir%/}")"; 		mkdir "wp-content/$dir"; 	done; 	chown -R www-data:www-data wp-content; 	chmod -R 1777 wp-content # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
VOLUME [/var/www/html]
# Mon, 24 Jun 2024 19:12:59 GMT
COPY --chown=www-data:www-data wp-config-docker.php /usr/src/wordpress/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-entrypoint.sh"]
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
  • Layers:
    • sha256:f11c1adaa26e078479ccdd45312ea3b88476441b91be0ec898a7e07bfd05badc
      Last Modified: Tue, 02 Jul 2024 01:28:49 GMT
      Size: 29.1 MB (29126278 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:91c1fd48de30b16f5766e6ac96a6fe3c0b3241c34c93fe82ddc8a8536729dd53
      Last Modified: Tue, 02 Jul 2024 04:36:30 GMT
      Size: 226.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:c3b3bda7c6d1ae6620633030596609872e7f2b102e3f274f02c71ee92e136cb7
      Last Modified: Tue, 02 Jul 2024 04:36:44 GMT
      Size: 104.3 MB (104349018 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:65a68eb681dd3cc5f145cf854bf049843298d6ee06c3259ddff5bf4793710a80
      Last Modified: Tue, 02 Jul 2024 04:36:30 GMT
      Size: 225.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:35406f9afc7f771a49890b78aa21515eb9a55078c04c935db2eccebfa0ee09e1
      Last Modified: Tue, 02 Jul 2024 04:37:07 GMT
      Size: 20.3 MB (20328149 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:a7d29e3575095485f641778e00db76200a84450e66c56ade92952177c80038fd
      Last Modified: Tue, 02 Jul 2024 04:37:05 GMT
      Size: 436.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:d497b137ced83d700feeac177251b0552c63749019adf459aeb89db255825ee2
      Last Modified: Tue, 02 Jul 2024 04:37:05 GMT
      Size: 487.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:dabbc6b5ab09e04935c68a7659c2e80b0b2b41e59d634fdc50b6ec8608a52411
      Last Modified: Sat, 06 Jul 2024 02:30:02 GMT
      Size: 12.4 MB (12439918 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:42ebbd004593003f179658b2562d67a3d42c3c5527763d67d96c142ba25f35c0
      Last Modified: Sat, 06 Jul 2024 02:30:00 GMT
      Size: 492.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:d8437f303b6df59ec330d4364e06b4cef7626f22a38b9ecf85d44c5acdc54070
      Last Modified: Sat, 06 Jul 2024 02:30:02 GMT
      Size: 11.4 MB (11404425 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:1eb7786e3600f7bb48cd9717d74657073a0f862b1903523e5d41cea499dc284e
      Last Modified: Sat, 06 Jul 2024 02:30:00 GMT
      Size: 2.5 KB (2457 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:6f109a68b308f37eae8e4f942024ca0d202bc7964a7468af4261838fb73ae342
      Last Modified: Sat, 06 Jul 2024 02:30:00 GMT
      Size: 245.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:3fae4e1410c68bd81131febbe6f042369a95c60b240228299aafa48de444cb33
      Last Modified: Sat, 06 Jul 2024 02:30:00 GMT
      Size: 894.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:3742041360915ea7c5c3689173da108f4e960b1aaca9f74461c22a6bdb0c241e
      Last Modified: Sat, 06 Jul 2024 03:52:17 GMT
      Size: 26.3 MB (26254305 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:10be860e0deac9cfeba73faff3c521a9ec5c3ce2519114a47e7eb7bf8529e9cb
      Last Modified: Sat, 06 Jul 2024 03:52:16 GMT
      Size: 12.4 MB (12356106 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:d15b284f6870bbad52ea0f883e8be47d75b984673e6301dfe43798184fa836d5
      Last Modified: Sat, 06 Jul 2024 03:52:16 GMT
      Size: 360.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:4566618a287beb7a51c3a3c490da60faaafedb442758ba7dfeffb580600abf5a
      Last Modified: Sat, 06 Jul 2024 03:52:16 GMT
      Size: 391.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:e67b58997f2bb4c11b29216b36c1d56ab9970224b27bd0f7b956906e31182444
      Last Modified: Sat, 06 Jul 2024 03:52:17 GMT
      Size: 19.2 KB (19153 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:a66deda1e7f1c018fdb1ef4e867c8bc42bddcdf46cd466707f99c7137834e50f
      Last Modified: Sat, 06 Jul 2024 03:52:17 GMT
      Size: 24.5 MB (24527875 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:e911796db38fb20bd13a884a04c218d5548699462eea236f364b2c87e3e2b0a9
      Last Modified: Sat, 06 Jul 2024 03:52:17 GMT
      Size: 2.4 KB (2351 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:d17017b188bc31566e613367640035f96a76de394c97dbd32f5fb6262176722b
      Last Modified: Sat, 06 Jul 2024 03:52:17 GMT
      Size: 1.7 KB (1730 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip

wordpress:apache - unknown; unknown

$ docker pull wordpress@sha256:142d418a1e7a2b34dc7e84037a71356c6c36d13f8ae29b49dac02a770b6276d1
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 8.0 MB (8021316 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:a66193b7f40d0032e5c69550b058ea9adfe782d8ad17a3491eef2b22fa24ade6
  • Layers:
    • sha256:6c89ae1620c2c662f3671d28c1669100d6f9b1d88f16b672f1936e39fcdf15c9
      Last Modified: Sat, 06 Jul 2024 03:52:16 GMT
      Size: 8.0 MB (7959254 bytes)
      MIME: application/vnd.in-toto+json
    • sha256:9e6204f54519e58face437546ae0d21673635ea845e2b28d12627bf5b27ac227
      Last Modified: Sat, 06 Jul 2024 03:52:15 GMT
      Size: 62.1 KB (62062 bytes)
      MIME: application/vnd.in-toto+json

wordpress:apache - linux; arm variant v5

$ docker pull wordpress@sha256:c9c0cf7a63cad62bc35943d52c975c90418f76d928a46f3f84581d54b7e09a4a
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 211.5 MB (211547076 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:6fbbe0d9aa8e5210fc57ca1867c0de4344e277d27eba6eebda42d51767973e19
  • Entrypoint: ["docker-entrypoint.sh"]
  • Default Command: ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
ADD file:acd64fd8017b050fbd1031cf3a9abb59fd15c600649b9467c16029cc6bfd11d5 in / 
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["bash"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	{ 		echo 'Package: php*'; 		echo 'Pin: release *'; 		echo 'Pin-Priority: -1'; 	} > /etc/apt/preferences.d/no-debian-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHPIZE_DEPS=autoconf 		dpkg-dev 		file 		g++ 		gcc 		libc-dev 		make 		pkg-config 		re2c
# Mon, 24 Jun 2024 19:12:59 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/*
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_INI_DIR=/usr/local/etc/php
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_CONFDIR=/etc/apache2
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_ENVVARS=/etc/apache2/envvars
# Mon, 24 Jun 2024 19:12:59 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" 		"$APACHE_RUN_DIR/socks" 	; 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"
# Mon, 24 Jun 2024 19:12:59 GMT
RUN a2dismod mpm_event && a2enmod mpm_prefork
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo '<FilesMatch \.php$>'; 		echo '\tSetHandler application/x-httpd-php'; 		echo '</FilesMatch>'; 		echo; 		echo 'DirectoryIndex disabled'; 		echo 'DirectoryIndex index.php index.html'; 		echo; 		echo '<Directory /var/www/>'; 		echo '\tOptions -Indexes'; 		echo '\tAllowOverride All'; 		echo '</Directory>'; 	} | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" 	&& a2enconf docker-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_LDFLAGS=-Wl,-O1 -pie
# Mon, 24 Jun 2024 19:12:59 GMT
ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_VERSION=8.2.21
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_URL=https://www.php.net/distributions/php-8.2.21.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.21.tar.xz.asc
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_SHA256=8cc44d51bb2506399ec176f70fe110f0c9e1f7d852a5303a2cd1403402199707
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 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" 		PHP_BUILD_PROVIDER='https://github.com/docker-library/php' 		PHP_UNAME='Linux - Docker' 	; 	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-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" = 'riscv64-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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
RUN docker-php-ext-enable sodium
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-php-entrypoint"]
# Mon, 24 Jun 2024 19:12:59 GMT
STOPSIGNAL SIGWINCH
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
WORKDIR /var/www/html
# Mon, 24 Jun 2024 19:12:59 GMT
EXPOSE 80
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ghostscript 	; 	rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -ex; 		savedAptMark="$(apt-mark showmanual)"; 		apt-get update; 	apt-get install -y --no-install-recommends 		libfreetype6-dev 		libicu-dev 		libjpeg-dev 		libmagickwand-dev 		libpng-dev 		libwebp-dev 		libzip-dev 	; 		docker-php-ext-configure gd 		--with-freetype 		--with-jpeg 		--with-webp 	; 	docker-php-ext-install -j "$(nproc)" 		bcmath 		exif 		gd 		intl 		mysqli 		zip 	; 	curl -fL -o imagick.tgz 'https://pecl.php.net/get/imagick-3.7.0.tgz'; 	echo '5a364354109029d224bcbb2e82e15b248be9b641227f45e63425c06531792d3e *imagick.tgz' | sha256sum -c -; 	tar --extract --directory /tmp --file imagick.tgz imagick-3.7.0; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php; 	test "$(grep -c '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php)" = '1'; 	sed -i -e 's!^//#endif$!#endif!' /tmp/imagick-3.7.0/Imagick.stub.php; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php && exit 1 || :; 	docker-php-ext-install /tmp/imagick-3.7.0; 	rm -rf imagick.tgz /tmp/imagick-3.7.0; 		out="$(php -r 'exit(0);')"; 	[ -z "$out" ]; 	err="$(php -r 'exit(0);' 3>&1 1>&2 2>&3)"; 	[ -z "$err" ]; 		extDir="$(php -r 'echo ini_get("extension_dir");')"; 	[ -d "$extDir" ]; 	apt-mark auto '.*' > /dev/null; 	apt-mark manual $savedAptMark; 	ldd "$extDir"/*.so 		| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| sort -u 		| xargs -r dpkg-query --search 		| cut -d: -f1 		| sort -u 		| xargs -rt apt-mark manual; 		apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	rm -rf /var/lib/apt/lists/*; 		! { ldd "$extDir"/*.so | grep 'not found'; }; 	err="$(php --version 3>&1 1>&2 2>&3)"; 	[ -z "$err" ] # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	docker-php-ext-enable opcache; 	{ 		echo 'opcache.memory_consumption=128'; 		echo 'opcache.interned_strings_buffer=8'; 		echo 'opcache.max_accelerated_files=4000'; 		echo 'opcache.revalidate_freq=2'; 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; 		echo 'display_errors = Off'; 		echo 'display_startup_errors = Off'; 		echo 'log_errors = On'; 		echo 'error_log = /dev/stderr'; 		echo 'log_errors_max_len = 1024'; 		echo 'ignore_repeated_errors = On'; 		echo 'ignore_repeated_source = Off'; 		echo 'html_errors = Off'; 	} > /usr/local/etc/php/conf.d/error-logging.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	a2enmod rewrite expires; 		a2enmod remoteip; 	{ 		echo 'RemoteIPHeader X-Forwarded-For'; 		echo 'RemoteIPInternalProxy 10.0.0.0/8'; 		echo 'RemoteIPInternalProxy 172.16.0.0/12'; 		echo 'RemoteIPInternalProxy 192.168.0.0/16'; 		echo 'RemoteIPInternalProxy 169.254.0.0/16'; 		echo 'RemoteIPInternalProxy 127.0.0.0/8'; 	} > /etc/apache2/conf-available/remoteip.conf; 	a2enconf remoteip; 	find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	version='6.5.5'; 	sha1='8d6a705f1b59367ec584a5fd4ab84aa53dd01c85'; 		curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; 	echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; 		tar -xzf wordpress.tar.gz -C /usr/src/; 	rm wordpress.tar.gz; 		[ ! -e /usr/src/wordpress/.htaccess ]; 	{ 		echo '# BEGIN WordPress'; 		echo ''; 		echo 'RewriteEngine On'; 		echo 'RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]'; 		echo 'RewriteBase /'; 		echo 'RewriteRule ^index\.php$ - [L]'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-f'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-d'; 		echo 'RewriteRule . /index.php [L]'; 		echo ''; 		echo '# END WordPress'; 	} > /usr/src/wordpress/.htaccess; 		chown -R www-data:www-data /usr/src/wordpress; 	mkdir wp-content; 	for dir in /usr/src/wordpress/wp-content/*/ cache; do 		dir="$(basename "${dir%/}")"; 		mkdir "wp-content/$dir"; 	done; 	chown -R www-data:www-data wp-content; 	chmod -R 1777 wp-content # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
VOLUME [/var/www/html]
# Mon, 24 Jun 2024 19:12:59 GMT
COPY --chown=www-data:www-data wp-config-docker.php /usr/src/wordpress/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-entrypoint.sh"]
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
  • Layers:
    • sha256:a8f08669f346f00b060b912e835bd6c163fca9818f070c730d6ffcc249497315
      Last Modified: Tue, 02 Jul 2024 00:51:30 GMT
      Size: 26.9 MB (26887286 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:a3fa7b963844d7a531cf61bfa69bbb8429c9b28bbc6fa8908e9ac1418cef4458
      Last Modified: Tue, 02 Jul 2024 03:41:01 GMT
      Size: 223.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:7e6337430e42acedb06f4a615a62ef8175ddb93248b8558778019f70a0977bb9
      Last Modified: Tue, 02 Jul 2024 03:41:20 GMT
      Size: 82.0 MB (81997556 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:f52929959fae16599e8f6edc0be4d23c98f1b9c9bc53e232dd6b029a1f0c2421
      Last Modified: Tue, 02 Jul 2024 03:41:01 GMT
      Size: 225.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:4ab47bc327c2f621a15e696a06a22e7954434b1eba7a6917a220d76b315aa652
      Last Modified: Tue, 02 Jul 2024 03:41:45 GMT
      Size: 19.6 MB (19620495 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:cff5cd1bf38c523b7094f7e3b241caa94d68265f5645e113fef2d23af5f9a74c
      Last Modified: Tue, 02 Jul 2024 03:41:41 GMT
      Size: 438.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:ce0699d1b86522ccca00a70a4cf12296e520df5cd2cc365da7e6cc2a5e55197e
      Last Modified: Tue, 02 Jul 2024 03:41:41 GMT
      Size: 488.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:dc5a7d4c21f604a9a2dbbcf0f3c441111670fd1e20b896397609e070e89337bf
      Last Modified: Sat, 06 Jul 2024 02:03:57 GMT
      Size: 12.4 MB (12438344 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:bd21247152bf7b5911c3b1952aced129d498a76999a8578c54ad363fe0b37690
      Last Modified: Sat, 06 Jul 2024 02:03:54 GMT
      Size: 491.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:4a984fe1ba721742767290a4f8081e651550a098ec9d96da22b124e9f020c524
      Last Modified: Sat, 06 Jul 2024 02:03:57 GMT
      Size: 10.4 MB (10390159 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:a4fc77342c167db20f179adf8099d60aa207e87d85c928328a5d707f6e51dab5
      Last Modified: Sat, 06 Jul 2024 02:03:54 GMT
      Size: 2.5 KB (2459 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:76183bc4069db6558f5209b344f8550528c7125ff72178fc53a400f3f58391af
      Last Modified: Sat, 06 Jul 2024 02:03:54 GMT
      Size: 244.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:17aa7b53723175ae96503ea392bfdfa0fd90ab911de1f79e8d24ed250bb01ad7
      Last Modified: Sat, 06 Jul 2024 02:03:54 GMT
      Size: 893.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:4878892f81bfebae74af1545f0d59487aa4dc023611d8169f58ab7e674db59b0
      Last Modified: Sat, 06 Jul 2024 04:05:52 GMT
      Size: 25.7 MB (25705552 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:de973ed80c28b2906ab9bf98cfcab48f011e6b0c700db84d0ba632b061aee3c5
      Last Modified: Sat, 06 Jul 2024 04:05:52 GMT
      Size: 10.0 MB (9950374 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:fd07911b3c5065e7ded10fd32bdfb0fc775de15ed50e7d547b9b1e3f17268483
      Last Modified: Sat, 06 Jul 2024 04:05:51 GMT
      Size: 360.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:6bc23114f78888de2a95c00a85363566e5ee135eec12dfcc3d917396ede253f0
      Last Modified: Sat, 06 Jul 2024 04:05:51 GMT
      Size: 390.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:92a2603d099fdffabc0086402c3b57428aab282e2253aea0bfb77628f868698b
      Last Modified: Sat, 06 Jul 2024 04:05:52 GMT
      Size: 19.2 KB (19153 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:9340517e96292b62816007b1c420d31ef2977e21f3d5a7bd91b22aab8d917ae8
      Last Modified: Sat, 06 Jul 2024 04:05:53 GMT
      Size: 24.5 MB (24527873 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:35ea2fe1517cb415b5ead50a243442d36e848fb2bb9ecc667ba5ab43c31f0cc7
      Last Modified: Sat, 06 Jul 2024 04:05:53 GMT
      Size: 2.3 KB (2348 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:b3cf1821515fc9db8d89c3998d62469a8ce0b5dec85208ca7f95f3b87847bec1
      Last Modified: Sat, 06 Jul 2024 04:05:53 GMT
      Size: 1.7 KB (1725 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip

wordpress:apache - unknown; unknown

$ docker pull wordpress@sha256:535a3d64433b7808966efe32d57544445f8b14d6b6f0a933c2344400579520be
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 7.8 MB (7829151 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:87205900f11ac5f348036bfcc4634aa9994254c6a32e0e5bb07f2a259876ffd0
  • Layers:
    • sha256:d59812747f94ee98b3ad558c786a367c336d8452ef7b8dd23eddec540c73c604
      Last Modified: Sat, 06 Jul 2024 04:05:51 GMT
      Size: 7.8 MB (7766874 bytes)
      MIME: application/vnd.in-toto+json
    • sha256:6471da5d71458bef6d8f007612e9d3d05135c96079d4f3f45a0690d8d5c5ab87
      Last Modified: Sat, 06 Jul 2024 04:05:51 GMT
      Size: 62.3 KB (62277 bytes)
      MIME: application/vnd.in-toto+json

wordpress:apache - linux; arm variant v7

$ docker pull wordpress@sha256:e145817f871ae22054e92152e132470cb6e8b19bc7cd839be043fe7890b38864
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 200.8 MB (200815610 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:1389377b5c9adabb27c418a9a2b05e08f6264c2dec40abc6fe903c4330f37634
  • Entrypoint: ["docker-entrypoint.sh"]
  • Default Command: ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
ADD file:f2c0623bafe70d6e2d8748c6de4eeb93699054f8d34e62c6257b940d4e24e44d in / 
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["bash"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	{ 		echo 'Package: php*'; 		echo 'Pin: release *'; 		echo 'Pin-Priority: -1'; 	} > /etc/apt/preferences.d/no-debian-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHPIZE_DEPS=autoconf 		dpkg-dev 		file 		g++ 		gcc 		libc-dev 		make 		pkg-config 		re2c
# Mon, 24 Jun 2024 19:12:59 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/*
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_INI_DIR=/usr/local/etc/php
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_CONFDIR=/etc/apache2
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_ENVVARS=/etc/apache2/envvars
# Mon, 24 Jun 2024 19:12:59 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" 		"$APACHE_RUN_DIR/socks" 	; 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"
# Mon, 24 Jun 2024 19:12:59 GMT
RUN a2dismod mpm_event && a2enmod mpm_prefork
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo '<FilesMatch \.php$>'; 		echo '\tSetHandler application/x-httpd-php'; 		echo '</FilesMatch>'; 		echo; 		echo 'DirectoryIndex disabled'; 		echo 'DirectoryIndex index.php index.html'; 		echo; 		echo '<Directory /var/www/>'; 		echo '\tOptions -Indexes'; 		echo '\tAllowOverride All'; 		echo '</Directory>'; 	} | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" 	&& a2enconf docker-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_LDFLAGS=-Wl,-O1 -pie
# Mon, 24 Jun 2024 19:12:59 GMT
ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_VERSION=8.2.21
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_URL=https://www.php.net/distributions/php-8.2.21.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.21.tar.xz.asc
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_SHA256=8cc44d51bb2506399ec176f70fe110f0c9e1f7d852a5303a2cd1403402199707
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 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" 		PHP_BUILD_PROVIDER='https://github.com/docker-library/php' 		PHP_UNAME='Linux - Docker' 	; 	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-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" = 'riscv64-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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
RUN docker-php-ext-enable sodium
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-php-entrypoint"]
# Mon, 24 Jun 2024 19:12:59 GMT
STOPSIGNAL SIGWINCH
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
WORKDIR /var/www/html
# Mon, 24 Jun 2024 19:12:59 GMT
EXPOSE 80
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ghostscript 	; 	rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -ex; 		savedAptMark="$(apt-mark showmanual)"; 		apt-get update; 	apt-get install -y --no-install-recommends 		libfreetype6-dev 		libicu-dev 		libjpeg-dev 		libmagickwand-dev 		libpng-dev 		libwebp-dev 		libzip-dev 	; 		docker-php-ext-configure gd 		--with-freetype 		--with-jpeg 		--with-webp 	; 	docker-php-ext-install -j "$(nproc)" 		bcmath 		exif 		gd 		intl 		mysqli 		zip 	; 	curl -fL -o imagick.tgz 'https://pecl.php.net/get/imagick-3.7.0.tgz'; 	echo '5a364354109029d224bcbb2e82e15b248be9b641227f45e63425c06531792d3e *imagick.tgz' | sha256sum -c -; 	tar --extract --directory /tmp --file imagick.tgz imagick-3.7.0; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php; 	test "$(grep -c '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php)" = '1'; 	sed -i -e 's!^//#endif$!#endif!' /tmp/imagick-3.7.0/Imagick.stub.php; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php && exit 1 || :; 	docker-php-ext-install /tmp/imagick-3.7.0; 	rm -rf imagick.tgz /tmp/imagick-3.7.0; 		out="$(php -r 'exit(0);')"; 	[ -z "$out" ]; 	err="$(php -r 'exit(0);' 3>&1 1>&2 2>&3)"; 	[ -z "$err" ]; 		extDir="$(php -r 'echo ini_get("extension_dir");')"; 	[ -d "$extDir" ]; 	apt-mark auto '.*' > /dev/null; 	apt-mark manual $savedAptMark; 	ldd "$extDir"/*.so 		| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| sort -u 		| xargs -r dpkg-query --search 		| cut -d: -f1 		| sort -u 		| xargs -rt apt-mark manual; 		apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	rm -rf /var/lib/apt/lists/*; 		! { ldd "$extDir"/*.so | grep 'not found'; }; 	err="$(php --version 3>&1 1>&2 2>&3)"; 	[ -z "$err" ] # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	docker-php-ext-enable opcache; 	{ 		echo 'opcache.memory_consumption=128'; 		echo 'opcache.interned_strings_buffer=8'; 		echo 'opcache.max_accelerated_files=4000'; 		echo 'opcache.revalidate_freq=2'; 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; 		echo 'display_errors = Off'; 		echo 'display_startup_errors = Off'; 		echo 'log_errors = On'; 		echo 'error_log = /dev/stderr'; 		echo 'log_errors_max_len = 1024'; 		echo 'ignore_repeated_errors = On'; 		echo 'ignore_repeated_source = Off'; 		echo 'html_errors = Off'; 	} > /usr/local/etc/php/conf.d/error-logging.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	a2enmod rewrite expires; 		a2enmod remoteip; 	{ 		echo 'RemoteIPHeader X-Forwarded-For'; 		echo 'RemoteIPInternalProxy 10.0.0.0/8'; 		echo 'RemoteIPInternalProxy 172.16.0.0/12'; 		echo 'RemoteIPInternalProxy 192.168.0.0/16'; 		echo 'RemoteIPInternalProxy 169.254.0.0/16'; 		echo 'RemoteIPInternalProxy 127.0.0.0/8'; 	} > /etc/apache2/conf-available/remoteip.conf; 	a2enconf remoteip; 	find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	version='6.5.5'; 	sha1='8d6a705f1b59367ec584a5fd4ab84aa53dd01c85'; 		curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; 	echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; 		tar -xzf wordpress.tar.gz -C /usr/src/; 	rm wordpress.tar.gz; 		[ ! -e /usr/src/wordpress/.htaccess ]; 	{ 		echo '# BEGIN WordPress'; 		echo ''; 		echo 'RewriteEngine On'; 		echo 'RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]'; 		echo 'RewriteBase /'; 		echo 'RewriteRule ^index\.php$ - [L]'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-f'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-d'; 		echo 'RewriteRule . /index.php [L]'; 		echo ''; 		echo '# END WordPress'; 	} > /usr/src/wordpress/.htaccess; 		chown -R www-data:www-data /usr/src/wordpress; 	mkdir wp-content; 	for dir in /usr/src/wordpress/wp-content/*/ cache; do 		dir="$(basename "${dir%/}")"; 		mkdir "wp-content/$dir"; 	done; 	chown -R www-data:www-data wp-content; 	chmod -R 1777 wp-content # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
VOLUME [/var/www/html]
# Mon, 24 Jun 2024 19:12:59 GMT
COPY --chown=www-data:www-data wp-config-docker.php /usr/src/wordpress/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-entrypoint.sh"]
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
  • Layers:
    • sha256:60ec5feb0c17c4f910ca5d3cefbda7bcc1ca066b4482707262696f589dabdcb5
      Last Modified: Tue, 02 Jul 2024 01:03:20 GMT
      Size: 24.7 MB (24718170 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:f98f2ea35903ab22a64a0b9429586e5ebf253d8f30160f658c9a3e91506b6b4f
      Last Modified: Tue, 02 Jul 2024 03:57:05 GMT
      Size: 225.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:bed99c1553b06b60dc38f501a723427469be3c7f305f660c2d3f5c4826636db6
      Last Modified: Tue, 02 Jul 2024 03:57:17 GMT
      Size: 76.2 MB (76166316 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:97ff1c809dc06de95648d78a0490826dc9afc53a05c01d001be86b39ec6903ec
      Last Modified: Tue, 02 Jul 2024 03:57:05 GMT
      Size: 225.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:751f0125442586c37682f7ec34b710b4ab71ddc530c91fea2cf2af4901d2a1a4
      Last Modified: Tue, 02 Jul 2024 03:57:42 GMT
      Size: 19.1 MB (19057874 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:016198828fa6032df9c10ec2e792db92c6a8b19d35a884387328ccb4cb68f19d
      Last Modified: Tue, 02 Jul 2024 03:57:39 GMT
      Size: 435.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:90b6f3e158190277e0f0f214b0dc62c26057875ebd2af19ac0a15534c73fb171
      Last Modified: Tue, 02 Jul 2024 03:57:39 GMT
      Size: 487.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:b67d49f7b73697acdf6bcc1a9e3eb1ea63a9b27042b8d33b439b997dfdb56d66
      Last Modified: Sat, 06 Jul 2024 02:49:47 GMT
      Size: 12.4 MB (12438316 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:72f12e978cd19aadd065b12b683bac7203a182884f3e58fa2e41db8edfa21088
      Last Modified: Sat, 06 Jul 2024 02:49:44 GMT
      Size: 491.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:96a9576c4547f5c978525a2f3440a9fd17b1ec77497b1311d4c482dfece1d1e7
      Last Modified: Sat, 06 Jul 2024 02:49:47 GMT
      Size: 9.8 MB (9820446 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:80242c861919a2697b121a12df1e45106624a31aa546aa4d30d5daec84ed48a4
      Last Modified: Sat, 06 Jul 2024 02:49:44 GMT
      Size: 2.5 KB (2456 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:8c7686fa419e0c8029f71848b669c980e438f2370b2c59f1de1be736fd7199be
      Last Modified: Sat, 06 Jul 2024 02:49:44 GMT
      Size: 246.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:a96c2ebf5f9dd5a35ce959322f3f204130e2ab16a428874e07d047258a15bc09
      Last Modified: Sat, 06 Jul 2024 02:49:44 GMT
      Size: 894.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:940cdaa6a8b2d803c9cc7dab5328dac7326234241c5a12c49144023f94ed8387
      Last Modified: Sat, 06 Jul 2024 05:32:06 GMT
      Size: 25.1 MB (25076616 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:9ce5becf3f8c7a1fdc183dd48ffcfeaedc8ae6ff9703f772d6c7702acd1af273
      Last Modified: Sat, 06 Jul 2024 05:32:06 GMT
      Size: 9.0 MB (8980538 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:cca3eeefab8e193274784a46307b8a5f6daa59fed77ed46ba87da8c6e5ae5c39
      Last Modified: Sat, 06 Jul 2024 05:32:05 GMT
      Size: 362.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:09687f370c2685f03a4a5cb00cfdb848cbaf94e9d83333a58f8d070afd0ca4f0
      Last Modified: Sat, 06 Jul 2024 05:32:05 GMT
      Size: 390.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:25ce90ac7261d769a321fda13e47c1ca63a89cecf1feaea7d064a7425f82f0ab
      Last Modified: Sat, 06 Jul 2024 05:32:06 GMT
      Size: 19.2 KB (19172 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:3a55495a13469e680c3596ce570364064846088a124eba21d8ce19b4c81f0c67
      Last Modified: Sat, 06 Jul 2024 05:32:07 GMT
      Size: 24.5 MB (24527874 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:4d716dc7213d0302b01a9bd78268d1343f35b81e336cbd0230434bad48d665fc
      Last Modified: Sat, 06 Jul 2024 05:32:07 GMT
      Size: 2.4 KB (2350 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:32cb7011c425a59ba6ebcbf1354c0a33e39dd4bd188c4b4903f953d86b558a71
      Last Modified: Sat, 06 Jul 2024 05:32:07 GMT
      Size: 1.7 KB (1727 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip

wordpress:apache - unknown; unknown

$ docker pull wordpress@sha256:d04b07c1073f21002507b29b2782c25c6e79426972940c125dc97a0886f967a4
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 7.8 MB (7833696 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:c0b2f6dcc8f68448c3fc5aba58757238cbddf56892756291d095bcd93e5b371c
  • Layers:
    • sha256:2b0318310dd01a71868d5afa45a18dfb9526615ec9fc873e7ea755c2ea566226
      Last Modified: Sat, 06 Jul 2024 05:32:05 GMT
      Size: 7.8 MB (7771430 bytes)
      MIME: application/vnd.in-toto+json
    • sha256:b99ff53da4d699312e3b2a55b5207487e4a482551b8d909489cc5d4c66c1e504
      Last Modified: Sat, 06 Jul 2024 05:32:05 GMT
      Size: 62.3 KB (62266 bytes)
      MIME: application/vnd.in-toto+json

wordpress:apache - linux; arm64 variant v8

$ docker pull wordpress@sha256:3fa37d7df77d761e63fafe1c5e665c8e6eb83d4412ffbecb7ae89429080a20e0
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 232.2 MB (232158949 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:04c94b78b5238fab280dceb9b3d66a56e1a2b37532aa95893ec3aa4a5ec662a9
  • Entrypoint: ["docker-entrypoint.sh"]
  • Default Command: ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
ADD file:cbda549b25cd4337cd3ce345e3b66c0d3b43c247d7315906a028f98a56c41f1d in / 
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["bash"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	{ 		echo 'Package: php*'; 		echo 'Pin: release *'; 		echo 'Pin-Priority: -1'; 	} > /etc/apt/preferences.d/no-debian-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHPIZE_DEPS=autoconf 		dpkg-dev 		file 		g++ 		gcc 		libc-dev 		make 		pkg-config 		re2c
# Mon, 24 Jun 2024 19:12:59 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/*
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_INI_DIR=/usr/local/etc/php
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_CONFDIR=/etc/apache2
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_ENVVARS=/etc/apache2/envvars
# Mon, 24 Jun 2024 19:12:59 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" 		"$APACHE_RUN_DIR/socks" 	; 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"
# Mon, 24 Jun 2024 19:12:59 GMT
RUN a2dismod mpm_event && a2enmod mpm_prefork
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo '<FilesMatch \.php$>'; 		echo '\tSetHandler application/x-httpd-php'; 		echo '</FilesMatch>'; 		echo; 		echo 'DirectoryIndex disabled'; 		echo 'DirectoryIndex index.php index.html'; 		echo; 		echo '<Directory /var/www/>'; 		echo '\tOptions -Indexes'; 		echo '\tAllowOverride All'; 		echo '</Directory>'; 	} | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" 	&& a2enconf docker-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_LDFLAGS=-Wl,-O1 -pie
# Mon, 24 Jun 2024 19:12:59 GMT
ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_VERSION=8.2.21
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_URL=https://www.php.net/distributions/php-8.2.21.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.21.tar.xz.asc
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_SHA256=8cc44d51bb2506399ec176f70fe110f0c9e1f7d852a5303a2cd1403402199707
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 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" 		PHP_BUILD_PROVIDER='https://github.com/docker-library/php' 		PHP_UNAME='Linux - Docker' 	; 	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-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" = 'riscv64-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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
RUN docker-php-ext-enable sodium
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-php-entrypoint"]
# Mon, 24 Jun 2024 19:12:59 GMT
STOPSIGNAL SIGWINCH
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
WORKDIR /var/www/html
# Mon, 24 Jun 2024 19:12:59 GMT
EXPOSE 80
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ghostscript 	; 	rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -ex; 		savedAptMark="$(apt-mark showmanual)"; 		apt-get update; 	apt-get install -y --no-install-recommends 		libfreetype6-dev 		libicu-dev 		libjpeg-dev 		libmagickwand-dev 		libpng-dev 		libwebp-dev 		libzip-dev 	; 		docker-php-ext-configure gd 		--with-freetype 		--with-jpeg 		--with-webp 	; 	docker-php-ext-install -j "$(nproc)" 		bcmath 		exif 		gd 		intl 		mysqli 		zip 	; 	curl -fL -o imagick.tgz 'https://pecl.php.net/get/imagick-3.7.0.tgz'; 	echo '5a364354109029d224bcbb2e82e15b248be9b641227f45e63425c06531792d3e *imagick.tgz' | sha256sum -c -; 	tar --extract --directory /tmp --file imagick.tgz imagick-3.7.0; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php; 	test "$(grep -c '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php)" = '1'; 	sed -i -e 's!^//#endif$!#endif!' /tmp/imagick-3.7.0/Imagick.stub.php; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php && exit 1 || :; 	docker-php-ext-install /tmp/imagick-3.7.0; 	rm -rf imagick.tgz /tmp/imagick-3.7.0; 		out="$(php -r 'exit(0);')"; 	[ -z "$out" ]; 	err="$(php -r 'exit(0);' 3>&1 1>&2 2>&3)"; 	[ -z "$err" ]; 		extDir="$(php -r 'echo ini_get("extension_dir");')"; 	[ -d "$extDir" ]; 	apt-mark auto '.*' > /dev/null; 	apt-mark manual $savedAptMark; 	ldd "$extDir"/*.so 		| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| sort -u 		| xargs -r dpkg-query --search 		| cut -d: -f1 		| sort -u 		| xargs -rt apt-mark manual; 		apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	rm -rf /var/lib/apt/lists/*; 		! { ldd "$extDir"/*.so | grep 'not found'; }; 	err="$(php --version 3>&1 1>&2 2>&3)"; 	[ -z "$err" ] # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	docker-php-ext-enable opcache; 	{ 		echo 'opcache.memory_consumption=128'; 		echo 'opcache.interned_strings_buffer=8'; 		echo 'opcache.max_accelerated_files=4000'; 		echo 'opcache.revalidate_freq=2'; 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; 		echo 'display_errors = Off'; 		echo 'display_startup_errors = Off'; 		echo 'log_errors = On'; 		echo 'error_log = /dev/stderr'; 		echo 'log_errors_max_len = 1024'; 		echo 'ignore_repeated_errors = On'; 		echo 'ignore_repeated_source = Off'; 		echo 'html_errors = Off'; 	} > /usr/local/etc/php/conf.d/error-logging.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	a2enmod rewrite expires; 		a2enmod remoteip; 	{ 		echo 'RemoteIPHeader X-Forwarded-For'; 		echo 'RemoteIPInternalProxy 10.0.0.0/8'; 		echo 'RemoteIPInternalProxy 172.16.0.0/12'; 		echo 'RemoteIPInternalProxy 192.168.0.0/16'; 		echo 'RemoteIPInternalProxy 169.254.0.0/16'; 		echo 'RemoteIPInternalProxy 127.0.0.0/8'; 	} > /etc/apache2/conf-available/remoteip.conf; 	a2enconf remoteip; 	find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	version='6.5.5'; 	sha1='8d6a705f1b59367ec584a5fd4ab84aa53dd01c85'; 		curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; 	echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; 		tar -xzf wordpress.tar.gz -C /usr/src/; 	rm wordpress.tar.gz; 		[ ! -e /usr/src/wordpress/.htaccess ]; 	{ 		echo '# BEGIN WordPress'; 		echo ''; 		echo 'RewriteEngine On'; 		echo 'RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]'; 		echo 'RewriteBase /'; 		echo 'RewriteRule ^index\.php$ - [L]'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-f'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-d'; 		echo 'RewriteRule . /index.php [L]'; 		echo ''; 		echo '# END WordPress'; 	} > /usr/src/wordpress/.htaccess; 		chown -R www-data:www-data /usr/src/wordpress; 	mkdir wp-content; 	for dir in /usr/src/wordpress/wp-content/*/ cache; do 		dir="$(basename "${dir%/}")"; 		mkdir "wp-content/$dir"; 	done; 	chown -R www-data:www-data wp-content; 	chmod -R 1777 wp-content # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
VOLUME [/var/www/html]
# Mon, 24 Jun 2024 19:12:59 GMT
COPY --chown=www-data:www-data wp-config-docker.php /usr/src/wordpress/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-entrypoint.sh"]
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
  • Layers:
    • sha256:ea235d1ccf77ca07a545b448996766dc3eca4b971b04ba39d50af69660b25751
      Last Modified: Tue, 02 Jul 2024 00:42:25 GMT
      Size: 29.2 MB (29156563 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:c1d168c82669385a88cb2d49927f5d97a9fd361459c5ba221ade1b4833b14530
      Last Modified: Tue, 02 Jul 2024 03:36:32 GMT
      Size: 225.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:be59d5943ae49be3e4ff309c07ef79eacf2bf161b53590db30e1227422f98601
      Last Modified: Tue, 02 Jul 2024 03:36:42 GMT
      Size: 98.1 MB (98131121 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:702846940aedcd56970bc052b4e64fa8ff21b12b0a6ba8ca8273f4e256aaedc2
      Last Modified: Tue, 02 Jul 2024 03:36:32 GMT
      Size: 224.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:8911daeb05e620d4f86e6e1800ae61553a08eaf29667c22d5a6bdae9461cada3
      Last Modified: Tue, 02 Jul 2024 03:37:07 GMT
      Size: 20.3 MB (20321495 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:4028ee2076616a6cf681ab5e49658e589a2d0b1918e9213d61a41938d6b4299b
      Last Modified: Tue, 02 Jul 2024 03:37:04 GMT
      Size: 438.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:cf4d03e54d8a1108c589658f102c0afa22f96cd422f05ace79e1ae3b68741d06
      Last Modified: Tue, 02 Jul 2024 03:37:04 GMT
      Size: 489.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:5bf9d317db705ec6b9bdce9b577d6482aa035267167983e339d3163780063495
      Last Modified: Sat, 06 Jul 2024 02:34:16 GMT
      Size: 12.4 MB (12439656 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:a762a6b11b69ade205e4b57cfeefba812cd226ed91aaaafe1fe7fa3dcdf028c4
      Last Modified: Sat, 06 Jul 2024 02:34:13 GMT
      Size: 491.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:1edaecdb14cb165c98dfabd3cff48b04a078f9b6a59d65c5e4c3eb17c1d21914
      Last Modified: Sat, 06 Jul 2024 02:34:15 GMT
      Size: 11.4 MB (11413248 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:b0758b025013d58c22243411654051ac6ef75d2e3b73e8d1c02de38cdf383591
      Last Modified: Sat, 06 Jul 2024 02:34:13 GMT
      Size: 2.5 KB (2459 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:81a45469237f099855b690a9bbe620bd1f471bbd7f8f91376b1054771800bfed
      Last Modified: Sat, 06 Jul 2024 02:34:13 GMT
      Size: 245.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:c461d9ba4cf54844c82817ca5707ae134df828bb03b3ab55fc43bbf8c6646e5d
      Last Modified: Sat, 06 Jul 2024 02:34:13 GMT
      Size: 895.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:927c46a05c5165a0b75610adfb7955a0c68b27521f02edc78d9d1272f5f8a265
      Last Modified: Sat, 06 Jul 2024 05:21:49 GMT
      Size: 26.2 MB (26173863 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:bd1e51af29a19b123d7584eece8669008ab8668d6db1b737d6db4bad35e0a604
      Last Modified: Sat, 06 Jul 2024 05:21:49 GMT
      Size: 10.0 MB (9965680 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:7e40adcf89e4a0ce68d523d3631c5ffff5ecb4ee38780556e224dec53060ccc4
      Last Modified: Sat, 06 Jul 2024 05:21:48 GMT
      Size: 361.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:3065e374207bda0da464ccd1df7b40322739353d8846c08f0fc3ad2cff3b7415
      Last Modified: Sat, 06 Jul 2024 05:21:48 GMT
      Size: 392.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:c40aa9cfa52838f7d9d6025f18361a491521f2eb79ba8b3d17d39c8cae51bfde
      Last Modified: Sat, 06 Jul 2024 05:21:49 GMT
      Size: 19.2 KB (19158 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:7d6af619180812acef361575142449a0f6ae4099cbb6c8c5d48f2a91c21c78af
      Last Modified: Sat, 06 Jul 2024 05:21:50 GMT
      Size: 24.5 MB (24527866 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:2faf66f89a325df19beeea55ef4e380e10868e084a49c0826ff26250c0d537c6
      Last Modified: Sat, 06 Jul 2024 05:21:50 GMT
      Size: 2.4 KB (2351 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:ac52bf8ab08523e12b1335e6046553b8e8cfcfb4d57e5a00b1e6e3f3c045a33f
      Last Modified: Sat, 06 Jul 2024 05:21:50 GMT
      Size: 1.7 KB (1729 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip

wordpress:apache - unknown; unknown

$ docker pull wordpress@sha256:a40ef9bfd70af0d2fb912d26e2112e6583d10c89a5a9bccc68e2f39aca943e65
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 8.1 MB (8050620 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:a4b171a0a5622779145914aa3027c6d5ef2b544e4d1eebb5785b808b8a7539f9
  • Layers:
    • sha256:cc592d2271a6ca0934c10f4e4e2544acb2230b54637a10af63a8996de4152f67
      Last Modified: Sat, 06 Jul 2024 05:21:48 GMT
      Size: 8.0 MB (7988128 bytes)
      MIME: application/vnd.in-toto+json
    • sha256:8fb631d691e79e59cb3d89481ea94558eeb1e7a88aa502da57b4bdadac1fa4bf
      Last Modified: Sat, 06 Jul 2024 05:21:48 GMT
      Size: 62.5 KB (62492 bytes)
      MIME: application/vnd.in-toto+json

wordpress:apache - linux; 386

$ docker pull wordpress@sha256:c19674d0597cd7a4e7e930419335e816fc015e598e570c9ac66bbb44dcee35b6
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 239.3 MB (239267058 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:84bb3c5ee95e8c3d82fde0be92a48a55416db38700f62cf7ea9522fa4318c621
  • Entrypoint: ["docker-entrypoint.sh"]
  • Default Command: ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
ADD file:833af11e99172b5d823c96481bc09ac63041d36ae1212658673bdc5b134499d7 in / 
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["bash"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	{ 		echo 'Package: php*'; 		echo 'Pin: release *'; 		echo 'Pin-Priority: -1'; 	} > /etc/apt/preferences.d/no-debian-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHPIZE_DEPS=autoconf 		dpkg-dev 		file 		g++ 		gcc 		libc-dev 		make 		pkg-config 		re2c
# Mon, 24 Jun 2024 19:12:59 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/*
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_INI_DIR=/usr/local/etc/php
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_CONFDIR=/etc/apache2
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_ENVVARS=/etc/apache2/envvars
# Mon, 24 Jun 2024 19:12:59 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" 		"$APACHE_RUN_DIR/socks" 	; 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"
# Mon, 24 Jun 2024 19:12:59 GMT
RUN a2dismod mpm_event && a2enmod mpm_prefork
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo '<FilesMatch \.php$>'; 		echo '\tSetHandler application/x-httpd-php'; 		echo '</FilesMatch>'; 		echo; 		echo 'DirectoryIndex disabled'; 		echo 'DirectoryIndex index.php index.html'; 		echo; 		echo '<Directory /var/www/>'; 		echo '\tOptions -Indexes'; 		echo '\tAllowOverride All'; 		echo '</Directory>'; 	} | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" 	&& a2enconf docker-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_LDFLAGS=-Wl,-O1 -pie
# Mon, 24 Jun 2024 19:12:59 GMT
ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_VERSION=8.2.21
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_URL=https://www.php.net/distributions/php-8.2.21.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.21.tar.xz.asc
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_SHA256=8cc44d51bb2506399ec176f70fe110f0c9e1f7d852a5303a2cd1403402199707
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 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" 		PHP_BUILD_PROVIDER='https://github.com/docker-library/php' 		PHP_UNAME='Linux - Docker' 	; 	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-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" = 'riscv64-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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
RUN docker-php-ext-enable sodium
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-php-entrypoint"]
# Mon, 24 Jun 2024 19:12:59 GMT
STOPSIGNAL SIGWINCH
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
WORKDIR /var/www/html
# Mon, 24 Jun 2024 19:12:59 GMT
EXPOSE 80
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ghostscript 	; 	rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -ex; 		savedAptMark="$(apt-mark showmanual)"; 		apt-get update; 	apt-get install -y --no-install-recommends 		libfreetype6-dev 		libicu-dev 		libjpeg-dev 		libmagickwand-dev 		libpng-dev 		libwebp-dev 		libzip-dev 	; 		docker-php-ext-configure gd 		--with-freetype 		--with-jpeg 		--with-webp 	; 	docker-php-ext-install -j "$(nproc)" 		bcmath 		exif 		gd 		intl 		mysqli 		zip 	; 	curl -fL -o imagick.tgz 'https://pecl.php.net/get/imagick-3.7.0.tgz'; 	echo '5a364354109029d224bcbb2e82e15b248be9b641227f45e63425c06531792d3e *imagick.tgz' | sha256sum -c -; 	tar --extract --directory /tmp --file imagick.tgz imagick-3.7.0; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php; 	test "$(grep -c '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php)" = '1'; 	sed -i -e 's!^//#endif$!#endif!' /tmp/imagick-3.7.0/Imagick.stub.php; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php && exit 1 || :; 	docker-php-ext-install /tmp/imagick-3.7.0; 	rm -rf imagick.tgz /tmp/imagick-3.7.0; 		out="$(php -r 'exit(0);')"; 	[ -z "$out" ]; 	err="$(php -r 'exit(0);' 3>&1 1>&2 2>&3)"; 	[ -z "$err" ]; 		extDir="$(php -r 'echo ini_get("extension_dir");')"; 	[ -d "$extDir" ]; 	apt-mark auto '.*' > /dev/null; 	apt-mark manual $savedAptMark; 	ldd "$extDir"/*.so 		| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| sort -u 		| xargs -r dpkg-query --search 		| cut -d: -f1 		| sort -u 		| xargs -rt apt-mark manual; 		apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	rm -rf /var/lib/apt/lists/*; 		! { ldd "$extDir"/*.so | grep 'not found'; }; 	err="$(php --version 3>&1 1>&2 2>&3)"; 	[ -z "$err" ] # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	docker-php-ext-enable opcache; 	{ 		echo 'opcache.memory_consumption=128'; 		echo 'opcache.interned_strings_buffer=8'; 		echo 'opcache.max_accelerated_files=4000'; 		echo 'opcache.revalidate_freq=2'; 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; 		echo 'display_errors = Off'; 		echo 'display_startup_errors = Off'; 		echo 'log_errors = On'; 		echo 'error_log = /dev/stderr'; 		echo 'log_errors_max_len = 1024'; 		echo 'ignore_repeated_errors = On'; 		echo 'ignore_repeated_source = Off'; 		echo 'html_errors = Off'; 	} > /usr/local/etc/php/conf.d/error-logging.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	a2enmod rewrite expires; 		a2enmod remoteip; 	{ 		echo 'RemoteIPHeader X-Forwarded-For'; 		echo 'RemoteIPInternalProxy 10.0.0.0/8'; 		echo 'RemoteIPInternalProxy 172.16.0.0/12'; 		echo 'RemoteIPInternalProxy 192.168.0.0/16'; 		echo 'RemoteIPInternalProxy 169.254.0.0/16'; 		echo 'RemoteIPInternalProxy 127.0.0.0/8'; 	} > /etc/apache2/conf-available/remoteip.conf; 	a2enconf remoteip; 	find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	version='6.5.5'; 	sha1='8d6a705f1b59367ec584a5fd4ab84aa53dd01c85'; 		curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; 	echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; 		tar -xzf wordpress.tar.gz -C /usr/src/; 	rm wordpress.tar.gz; 		[ ! -e /usr/src/wordpress/.htaccess ]; 	{ 		echo '# BEGIN WordPress'; 		echo ''; 		echo 'RewriteEngine On'; 		echo 'RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]'; 		echo 'RewriteBase /'; 		echo 'RewriteRule ^index\.php$ - [L]'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-f'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-d'; 		echo 'RewriteRule . /index.php [L]'; 		echo ''; 		echo '# END WordPress'; 	} > /usr/src/wordpress/.htaccess; 		chown -R www-data:www-data /usr/src/wordpress; 	mkdir wp-content; 	for dir in /usr/src/wordpress/wp-content/*/ cache; do 		dir="$(basename "${dir%/}")"; 		mkdir "wp-content/$dir"; 	done; 	chown -R www-data:www-data wp-content; 	chmod -R 1777 wp-content # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
VOLUME [/var/www/html]
# Mon, 24 Jun 2024 19:12:59 GMT
COPY --chown=www-data:www-data wp-config-docker.php /usr/src/wordpress/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-entrypoint.sh"]
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
  • Layers:
    • sha256:b9519b4198cfa047c0958f7cde32a32d32c6ae3486aea1aefc60e08ecf59449b
      Last Modified: Tue, 02 Jul 2024 00:42:41 GMT
      Size: 30.1 MB (30144275 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:6daa048202ff5a552b6eacd27b84297ac780821f0730574f9bb61ed3a6996e20
      Last Modified: Tue, 02 Jul 2024 05:39:16 GMT
      Size: 224.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:26d876e28acd3b5f3038bdfb0fb8fe720824179dc347e25e6d745ae512376fa6
      Last Modified: Tue, 02 Jul 2024 05:39:40 GMT
      Size: 101.5 MB (101516977 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:7fe24ff1fc83352bac36eafb7daa5d32e7ea2232fe6fef612107fdbd1f81e7c8
      Last Modified: Tue, 02 Jul 2024 05:39:16 GMT
      Size: 226.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:087987d024f8b2145282ca5bfbb784c34ed054bbc454fc96a25334882be4e1fe
      Last Modified: Tue, 02 Jul 2024 05:40:06 GMT
      Size: 20.8 MB (20843476 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:8723ec10434fcdc00676902f705fe56081a8fb0a774cb1a3a00894a4be83d8bf
      Last Modified: Tue, 02 Jul 2024 05:40:01 GMT
      Size: 436.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:35f856f33b11561e423f77df5f979a60b6dd4042c3f53df3d21647a29b671248
      Last Modified: Tue, 02 Jul 2024 05:40:01 GMT
      Size: 486.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:f66a32b0bc789af643a1e48825380f7c44f1cd48a491a96a75de9dc87796431a
      Last Modified: Sat, 06 Jul 2024 03:44:04 GMT
      Size: 12.4 MB (12439213 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:c09b8ee9b8256477781c0732be62796031309a5dc12e850600e8c346aa7a2913
      Last Modified: Sat, 06 Jul 2024 03:44:01 GMT
      Size: 492.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:b2867cf41d88fcae0343cc6935912e7c85fdd1ec8bc3ceedeadcf325cc9d325f
      Last Modified: Sat, 06 Jul 2024 03:44:04 GMT
      Size: 11.6 MB (11638453 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:0f280e5f3486331123f72b88d0f2c823a694da9f981597fb3c6161b50ba5cbd1
      Last Modified: Sat, 06 Jul 2024 03:44:01 GMT
      Size: 2.5 KB (2459 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:44c25865ebe8277f3aa6e3b4ccc1d0430fe6749fecce3ee9c21ed162f66a562d
      Last Modified: Sat, 06 Jul 2024 03:44:01 GMT
      Size: 247.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:afd6ad4e6d546308b8936bf7ffcd99e9312bf0257b6e9e41be53353462871dca
      Last Modified: Sat, 06 Jul 2024 03:44:01 GMT
      Size: 895.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:409f21d8f0d530230edaf2e71b253940484383820ef9cd6b49ac62b4de8f8e48
      Last Modified: Sat, 06 Jul 2024 05:56:24 GMT
      Size: 26.7 MB (26699008 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:5b8c6a74cdef2cab5daa8d56c6b5193f2883019783170fd7f717a51985458fe0
      Last Modified: Sat, 06 Jul 2024 05:56:24 GMT
      Size: 11.4 MB (11428342 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:4dcdb93923512d16c60945455d2def29fe1fabd20d260f3eff668417e9aca8ab
      Last Modified: Sat, 06 Jul 2024 05:56:24 GMT
      Size: 361.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:0abe80f6aa4bd11505f4773da3510159fda0088700138b17d3c62f92c0073c17
      Last Modified: Sat, 06 Jul 2024 05:56:23 GMT
      Size: 390.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:61d9acb042f673ac3938017aa7ce0e8fa3c633525cf3d3eb481d04333ae69f14
      Last Modified: Sat, 06 Jul 2024 05:56:24 GMT
      Size: 19.2 KB (19158 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:327d43675c50ce6c7e33dea5c49b990c354c841022362c378477cf8eac386f2b
      Last Modified: Sat, 06 Jul 2024 05:56:25 GMT
      Size: 24.5 MB (24527868 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:0ba6020fd08e95ccf6c2411d370d82e7213c0565c0976cfcb2cc0a4136748ccf
      Last Modified: Sat, 06 Jul 2024 05:56:25 GMT
      Size: 2.3 KB (2344 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:b2102d29cc88c581dcb0aeaeb01fcd8debaab1e98cdabe8ec2fcc38c274e3c6f
      Last Modified: Sat, 06 Jul 2024 05:56:25 GMT
      Size: 1.7 KB (1728 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip

wordpress:apache - unknown; unknown

$ docker pull wordpress@sha256:f92918aa7c74a8e7a9f3937ebd8bfb21426c6fdb44eeae57bbd27bf3c086932d
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 8.0 MB (8001303 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:2fe5b2de902503b285fb06e378b2d6cd91271e1abbca76299cafc58c32b23295
  • Layers:
    • sha256:140f4e34a1146a00c671ff0be87943f210c838eef0bd6f9b569a908188256b42
      Last Modified: Sat, 06 Jul 2024 05:56:23 GMT
      Size: 7.9 MB (7939340 bytes)
      MIME: application/vnd.in-toto+json
    • sha256:f0149550daf07c48bc1cae4ec6e299d36b1abdcbb0f6af84771a9385fb6ccfd5
      Last Modified: Sat, 06 Jul 2024 05:56:23 GMT
      Size: 62.0 KB (61963 bytes)
      MIME: application/vnd.in-toto+json

wordpress:apache - linux; mips64le

$ docker pull wordpress@sha256:99a7b4ecd2a830f7808da7c15d5be84a854db22b9e9f1675fc5dff77cd8a9461
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 212.6 MB (212622929 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:8e8c7ae19901d0e63804e9d219c179bb32aede8ca9e38195bf24673242e15ab2
  • Entrypoint: ["docker-entrypoint.sh"]
  • Default Command: ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
ADD file:9a0f0c8ed27f6f2bb89272036da4d44a63dcaf43fb03528dd2d970fbe64ccc92 in / 
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["bash"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	{ 		echo 'Package: php*'; 		echo 'Pin: release *'; 		echo 'Pin-Priority: -1'; 	} > /etc/apt/preferences.d/no-debian-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHPIZE_DEPS=autoconf 		dpkg-dev 		file 		g++ 		gcc 		libc-dev 		make 		pkg-config 		re2c
# Mon, 24 Jun 2024 19:12:59 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/*
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_INI_DIR=/usr/local/etc/php
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_CONFDIR=/etc/apache2
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_ENVVARS=/etc/apache2/envvars
# Mon, 24 Jun 2024 19:12:59 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" 		"$APACHE_RUN_DIR/socks" 	; 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"
# Mon, 24 Jun 2024 19:12:59 GMT
RUN a2dismod mpm_event && a2enmod mpm_prefork
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo '<FilesMatch \.php$>'; 		echo '\tSetHandler application/x-httpd-php'; 		echo '</FilesMatch>'; 		echo; 		echo 'DirectoryIndex disabled'; 		echo 'DirectoryIndex index.php index.html'; 		echo; 		echo '<Directory /var/www/>'; 		echo '\tOptions -Indexes'; 		echo '\tAllowOverride All'; 		echo '</Directory>'; 	} | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" 	&& a2enconf docker-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_LDFLAGS=-Wl,-O1 -pie
# Mon, 24 Jun 2024 19:12:59 GMT
ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_VERSION=8.2.21
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_URL=https://www.php.net/distributions/php-8.2.21.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.21.tar.xz.asc
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_SHA256=8cc44d51bb2506399ec176f70fe110f0c9e1f7d852a5303a2cd1403402199707
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 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" 		PHP_BUILD_PROVIDER='https://github.com/docker-library/php' 		PHP_UNAME='Linux - Docker' 	; 	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-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" = 'riscv64-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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
RUN docker-php-ext-enable sodium
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-php-entrypoint"]
# Mon, 24 Jun 2024 19:12:59 GMT
STOPSIGNAL SIGWINCH
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
WORKDIR /var/www/html
# Mon, 24 Jun 2024 19:12:59 GMT
EXPOSE 80
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ghostscript 	; 	rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -ex; 		savedAptMark="$(apt-mark showmanual)"; 		apt-get update; 	apt-get install -y --no-install-recommends 		libfreetype6-dev 		libicu-dev 		libjpeg-dev 		libmagickwand-dev 		libpng-dev 		libwebp-dev 		libzip-dev 	; 		docker-php-ext-configure gd 		--with-freetype 		--with-jpeg 		--with-webp 	; 	docker-php-ext-install -j "$(nproc)" 		bcmath 		exif 		gd 		intl 		mysqli 		zip 	; 	curl -fL -o imagick.tgz 'https://pecl.php.net/get/imagick-3.7.0.tgz'; 	echo '5a364354109029d224bcbb2e82e15b248be9b641227f45e63425c06531792d3e *imagick.tgz' | sha256sum -c -; 	tar --extract --directory /tmp --file imagick.tgz imagick-3.7.0; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php; 	test "$(grep -c '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php)" = '1'; 	sed -i -e 's!^//#endif$!#endif!' /tmp/imagick-3.7.0/Imagick.stub.php; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php && exit 1 || :; 	docker-php-ext-install /tmp/imagick-3.7.0; 	rm -rf imagick.tgz /tmp/imagick-3.7.0; 		out="$(php -r 'exit(0);')"; 	[ -z "$out" ]; 	err="$(php -r 'exit(0);' 3>&1 1>&2 2>&3)"; 	[ -z "$err" ]; 		extDir="$(php -r 'echo ini_get("extension_dir");')"; 	[ -d "$extDir" ]; 	apt-mark auto '.*' > /dev/null; 	apt-mark manual $savedAptMark; 	ldd "$extDir"/*.so 		| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| sort -u 		| xargs -r dpkg-query --search 		| cut -d: -f1 		| sort -u 		| xargs -rt apt-mark manual; 		apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	rm -rf /var/lib/apt/lists/*; 		! { ldd "$extDir"/*.so | grep 'not found'; }; 	err="$(php --version 3>&1 1>&2 2>&3)"; 	[ -z "$err" ] # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	docker-php-ext-enable opcache; 	{ 		echo 'opcache.memory_consumption=128'; 		echo 'opcache.interned_strings_buffer=8'; 		echo 'opcache.max_accelerated_files=4000'; 		echo 'opcache.revalidate_freq=2'; 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; 		echo 'display_errors = Off'; 		echo 'display_startup_errors = Off'; 		echo 'log_errors = On'; 		echo 'error_log = /dev/stderr'; 		echo 'log_errors_max_len = 1024'; 		echo 'ignore_repeated_errors = On'; 		echo 'ignore_repeated_source = Off'; 		echo 'html_errors = Off'; 	} > /usr/local/etc/php/conf.d/error-logging.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	a2enmod rewrite expires; 		a2enmod remoteip; 	{ 		echo 'RemoteIPHeader X-Forwarded-For'; 		echo 'RemoteIPInternalProxy 10.0.0.0/8'; 		echo 'RemoteIPInternalProxy 172.16.0.0/12'; 		echo 'RemoteIPInternalProxy 192.168.0.0/16'; 		echo 'RemoteIPInternalProxy 169.254.0.0/16'; 		echo 'RemoteIPInternalProxy 127.0.0.0/8'; 	} > /etc/apache2/conf-available/remoteip.conf; 	a2enconf remoteip; 	find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	version='6.5.5'; 	sha1='8d6a705f1b59367ec584a5fd4ab84aa53dd01c85'; 		curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; 	echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; 		tar -xzf wordpress.tar.gz -C /usr/src/; 	rm wordpress.tar.gz; 		[ ! -e /usr/src/wordpress/.htaccess ]; 	{ 		echo '# BEGIN WordPress'; 		echo ''; 		echo 'RewriteEngine On'; 		echo 'RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]'; 		echo 'RewriteBase /'; 		echo 'RewriteRule ^index\.php$ - [L]'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-f'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-d'; 		echo 'RewriteRule . /index.php [L]'; 		echo ''; 		echo '# END WordPress'; 	} > /usr/src/wordpress/.htaccess; 		chown -R www-data:www-data /usr/src/wordpress; 	mkdir wp-content; 	for dir in /usr/src/wordpress/wp-content/*/ cache; do 		dir="$(basename "${dir%/}")"; 		mkdir "wp-content/$dir"; 	done; 	chown -R www-data:www-data wp-content; 	chmod -R 1777 wp-content # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
VOLUME [/var/www/html]
# Mon, 24 Jun 2024 19:12:59 GMT
COPY --chown=www-data:www-data wp-config-docker.php /usr/src/wordpress/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-entrypoint.sh"]
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
  • Layers:
    • sha256:cbefe199012545da86e0f461f1964dea0c9bab400e37766ee5f32b967423cf0b
      Last Modified: Tue, 02 Jul 2024 01:29:29 GMT
      Size: 29.1 MB (29124929 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:8ed1759dfe41616d659c655029aa5ffee7bc0290fb805344c61d4dd8cc88b56a
      Last Modified: Tue, 02 Jul 2024 13:09:51 GMT
      Size: 227.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:87668ea9f028c1aacf9791f378385bcca4ded07f95e24bea21503a68256c3f79
      Last Modified: Tue, 02 Jul 2024 13:10:47 GMT
      Size: 80.7 MB (80666850 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:d1d27f245c61c8b7bad564b06537ec3270b260a1eff129f351336ba7b4ae60b7
      Last Modified: Tue, 02 Jul 2024 13:09:51 GMT
      Size: 226.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:2b4bd5a82f654c3c60e4b9be2169929baa34b7e44ec8427d9bbaa2d0bb08f199
      Last Modified: Tue, 02 Jul 2024 13:11:28 GMT
      Size: 20.1 MB (20064227 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:bb1d530f02878d48a195006e6da16b4131ebc447f824f93d0069f3ceb352f9df
      Last Modified: Tue, 02 Jul 2024 13:11:14 GMT
      Size: 436.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:878865a8e5b6fe65287574e259b5e3601bef496c8350af41f65b7d4d365b3cc5
      Last Modified: Tue, 02 Jul 2024 13:11:14 GMT
      Size: 495.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:7e99833d5aaea83a3f6016eb43557d1165b4357f73e6812e0d64d6339af195bf
      Last Modified: Sat, 06 Jul 2024 04:22:57 GMT
      Size: 12.2 MB (12233365 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:e6503e127f92fea21f16c94cbdc6286428312a4ee1ded159f2ce5d038b56a787
      Last Modified: Sat, 06 Jul 2024 04:22:52 GMT
      Size: 495.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:da92143eaa5df994b73defcfa6cd8e7ab8c7e7e52f364b379ba4e154e1901d50
      Last Modified: Sat, 06 Jul 2024 04:23:00 GMT
      Size: 10.5 MB (10485299 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:0c972713c5b847cb0cf1a6ca603aacea6c350b2d8836768ec89679747aff078b
      Last Modified: Sat, 06 Jul 2024 04:22:52 GMT
      Size: 2.5 KB (2460 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:3d1ad93a9c6a6c6ef1b35de606dacfa6001398f368e2b843704f473483e7e66d
      Last Modified: Sat, 06 Jul 2024 04:22:52 GMT
      Size: 250.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:d777e7a37cacb151d9144e552091dcd31554852831ece142fcef93102af1ecdc
      Last Modified: Sat, 06 Jul 2024 04:22:51 GMT
      Size: 895.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:6214b98d90bf460d8589f9ac1dac6e6782a379ef092a0f0675206cee466e71fb
      Last Modified: Sat, 06 Jul 2024 09:35:08 GMT
      Size: 26.0 MB (26026276 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:c5a614ad646352f571aed1855f499f13b6dbd07f938bb2d1cf2b1d563ee8324b
      Last Modified: Sat, 06 Jul 2024 09:35:06 GMT
      Size: 9.5 MB (9464629 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:ecaa6bd0ff1e622f9fb5a22d883f003f37c08760f78b2b72625a5c0f3f486079
      Last Modified: Sat, 06 Jul 2024 09:35:05 GMT
      Size: 361.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:099625515e3727b8a937fc1cdd57a193cf62aed3e92017321cd20f57420703e4
      Last Modified: Sat, 06 Jul 2024 09:35:05 GMT
      Size: 396.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:bcc3b19e87e5dae6c1ce77ef502de9de3fb56d19ebe40eab73451df3988ee4e3
      Last Modified: Sat, 06 Jul 2024 09:35:06 GMT
      Size: 19.2 KB (19163 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:4b4235dab588e027992f9b70db60987af5125a8ea9f21610160a0378351e1787
      Last Modified: Sat, 06 Jul 2024 09:35:09 GMT
      Size: 24.5 MB (24527867 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:74468ed8aea1bb901b1d32c3432eff8646da1de30ff5ff25beb94da562ccb153
      Last Modified: Sat, 06 Jul 2024 09:35:07 GMT
      Size: 2.4 KB (2351 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:51d90daecd1e1ad95691a4e622e25388dcfb6e195ca59695cf9a680f552d9c1f
      Last Modified: Sat, 06 Jul 2024 09:35:07 GMT
      Size: 1.7 KB (1732 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip

wordpress:apache - unknown; unknown

$ docker pull wordpress@sha256:84ed1e002f6b5a534bf32e52bcf8f06e840da950c2782ab9a9db3c477fbb54ec
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 62.0 KB (62007 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:99f2cd0f868e62be78a52d9bb788ae8c0ea89e023dc3a15777b3494768cd7ea6
  • Layers:
    • sha256:21116c5086e81e2e15b82b309335824eb5a9244ef3e7f80adccb17c496a43c45
      Last Modified: Sat, 06 Jul 2024 09:35:05 GMT
      Size: 62.0 KB (62007 bytes)
      MIME: application/vnd.in-toto+json

wordpress:apache - linux; ppc64le

$ docker pull wordpress@sha256:336a7dc04189d61e8933d9f80d6fa3c2d36e170fc218d7592920f63639513360
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 245.4 MB (245360191 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:25fc7717d88b40061d87dc4cffde949e8e4a0910d8397f179690c5f4b3fc3a09
  • Entrypoint: ["docker-entrypoint.sh"]
  • Default Command: ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
ADD file:1f056377e490976ef05b1f93f7003e637bc4464b1db7265cfe611b97c8fa8116 in / 
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["bash"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	{ 		echo 'Package: php*'; 		echo 'Pin: release *'; 		echo 'Pin-Priority: -1'; 	} > /etc/apt/preferences.d/no-debian-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHPIZE_DEPS=autoconf 		dpkg-dev 		file 		g++ 		gcc 		libc-dev 		make 		pkg-config 		re2c
# Mon, 24 Jun 2024 19:12:59 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/*
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_INI_DIR=/usr/local/etc/php
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_CONFDIR=/etc/apache2
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_ENVVARS=/etc/apache2/envvars
# Mon, 24 Jun 2024 19:12:59 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" 		"$APACHE_RUN_DIR/socks" 	; 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"
# Mon, 24 Jun 2024 19:12:59 GMT
RUN a2dismod mpm_event && a2enmod mpm_prefork
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo '<FilesMatch \.php$>'; 		echo '\tSetHandler application/x-httpd-php'; 		echo '</FilesMatch>'; 		echo; 		echo 'DirectoryIndex disabled'; 		echo 'DirectoryIndex index.php index.html'; 		echo; 		echo '<Directory /var/www/>'; 		echo '\tOptions -Indexes'; 		echo '\tAllowOverride All'; 		echo '</Directory>'; 	} | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" 	&& a2enconf docker-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_LDFLAGS=-Wl,-O1 -pie
# Mon, 24 Jun 2024 19:12:59 GMT
ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_VERSION=8.2.21
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_URL=https://www.php.net/distributions/php-8.2.21.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.21.tar.xz.asc
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_SHA256=8cc44d51bb2506399ec176f70fe110f0c9e1f7d852a5303a2cd1403402199707
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 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" 		PHP_BUILD_PROVIDER='https://github.com/docker-library/php' 		PHP_UNAME='Linux - Docker' 	; 	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-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" = 'riscv64-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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
RUN docker-php-ext-enable sodium
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-php-entrypoint"]
# Mon, 24 Jun 2024 19:12:59 GMT
STOPSIGNAL SIGWINCH
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
WORKDIR /var/www/html
# Mon, 24 Jun 2024 19:12:59 GMT
EXPOSE 80
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ghostscript 	; 	rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -ex; 		savedAptMark="$(apt-mark showmanual)"; 		apt-get update; 	apt-get install -y --no-install-recommends 		libfreetype6-dev 		libicu-dev 		libjpeg-dev 		libmagickwand-dev 		libpng-dev 		libwebp-dev 		libzip-dev 	; 		docker-php-ext-configure gd 		--with-freetype 		--with-jpeg 		--with-webp 	; 	docker-php-ext-install -j "$(nproc)" 		bcmath 		exif 		gd 		intl 		mysqli 		zip 	; 	curl -fL -o imagick.tgz 'https://pecl.php.net/get/imagick-3.7.0.tgz'; 	echo '5a364354109029d224bcbb2e82e15b248be9b641227f45e63425c06531792d3e *imagick.tgz' | sha256sum -c -; 	tar --extract --directory /tmp --file imagick.tgz imagick-3.7.0; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php; 	test "$(grep -c '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php)" = '1'; 	sed -i -e 's!^//#endif$!#endif!' /tmp/imagick-3.7.0/Imagick.stub.php; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php && exit 1 || :; 	docker-php-ext-install /tmp/imagick-3.7.0; 	rm -rf imagick.tgz /tmp/imagick-3.7.0; 		out="$(php -r 'exit(0);')"; 	[ -z "$out" ]; 	err="$(php -r 'exit(0);' 3>&1 1>&2 2>&3)"; 	[ -z "$err" ]; 		extDir="$(php -r 'echo ini_get("extension_dir");')"; 	[ -d "$extDir" ]; 	apt-mark auto '.*' > /dev/null; 	apt-mark manual $savedAptMark; 	ldd "$extDir"/*.so 		| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| sort -u 		| xargs -r dpkg-query --search 		| cut -d: -f1 		| sort -u 		| xargs -rt apt-mark manual; 		apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	rm -rf /var/lib/apt/lists/*; 		! { ldd "$extDir"/*.so | grep 'not found'; }; 	err="$(php --version 3>&1 1>&2 2>&3)"; 	[ -z "$err" ] # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	docker-php-ext-enable opcache; 	{ 		echo 'opcache.memory_consumption=128'; 		echo 'opcache.interned_strings_buffer=8'; 		echo 'opcache.max_accelerated_files=4000'; 		echo 'opcache.revalidate_freq=2'; 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; 		echo 'display_errors = Off'; 		echo 'display_startup_errors = Off'; 		echo 'log_errors = On'; 		echo 'error_log = /dev/stderr'; 		echo 'log_errors_max_len = 1024'; 		echo 'ignore_repeated_errors = On'; 		echo 'ignore_repeated_source = Off'; 		echo 'html_errors = Off'; 	} > /usr/local/etc/php/conf.d/error-logging.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	a2enmod rewrite expires; 		a2enmod remoteip; 	{ 		echo 'RemoteIPHeader X-Forwarded-For'; 		echo 'RemoteIPInternalProxy 10.0.0.0/8'; 		echo 'RemoteIPInternalProxy 172.16.0.0/12'; 		echo 'RemoteIPInternalProxy 192.168.0.0/16'; 		echo 'RemoteIPInternalProxy 169.254.0.0/16'; 		echo 'RemoteIPInternalProxy 127.0.0.0/8'; 	} > /etc/apache2/conf-available/remoteip.conf; 	a2enconf remoteip; 	find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	version='6.5.5'; 	sha1='8d6a705f1b59367ec584a5fd4ab84aa53dd01c85'; 		curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; 	echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; 		tar -xzf wordpress.tar.gz -C /usr/src/; 	rm wordpress.tar.gz; 		[ ! -e /usr/src/wordpress/.htaccess ]; 	{ 		echo '# BEGIN WordPress'; 		echo ''; 		echo 'RewriteEngine On'; 		echo 'RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]'; 		echo 'RewriteBase /'; 		echo 'RewriteRule ^index\.php$ - [L]'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-f'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-d'; 		echo 'RewriteRule . /index.php [L]'; 		echo ''; 		echo '# END WordPress'; 	} > /usr/src/wordpress/.htaccess; 		chown -R www-data:www-data /usr/src/wordpress; 	mkdir wp-content; 	for dir in /usr/src/wordpress/wp-content/*/ cache; do 		dir="$(basename "${dir%/}")"; 		mkdir "wp-content/$dir"; 	done; 	chown -R www-data:www-data wp-content; 	chmod -R 1777 wp-content # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
VOLUME [/var/www/html]
# Mon, 24 Jun 2024 19:12:59 GMT
COPY --chown=www-data:www-data wp-config-docker.php /usr/src/wordpress/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-entrypoint.sh"]
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
  • Layers:
    • sha256:6082a6ec8f0d4a9558cf2d3df5a429c7ae3e1cbf78bb5f0f3291dd68df0934d2
      Last Modified: Tue, 02 Jul 2024 01:21:57 GMT
      Size: 33.1 MB (33122277 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:609eb2596342a8a7f536a9dbbffcfccaaadff4bcd99626d15c588274979eaf2a
      Last Modified: Tue, 02 Jul 2024 04:14:43 GMT
      Size: 227.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:02b9e2e6a6e6ca971bb68e9cd39a2e7d46e2bacfa5a93def5ea728e84f1553a4
      Last Modified: Tue, 02 Jul 2024 04:15:02 GMT
      Size: 103.3 MB (103317721 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:f8703185de8bbe987d67d7808f74a14a5bcb767eadd604f0096503f998496675
      Last Modified: Tue, 02 Jul 2024 04:14:44 GMT
      Size: 224.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:30bfa1030b231350ace419a1b1cb2251a16babac7f828c4850f38366b1a7319a
      Last Modified: Tue, 02 Jul 2024 04:15:27 GMT
      Size: 21.5 MB (21511668 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:e4ed004f3d7d188c082021564296cd592b4b41057f3e2a33679c35c3e7bb1a2c
      Last Modified: Tue, 02 Jul 2024 04:15:25 GMT
      Size: 442.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:aacb72cfc9dd2acb981ca25b9f1f57e62d7bf82694d0a3219b604b104ba52cab
      Last Modified: Tue, 02 Jul 2024 04:15:24 GMT
      Size: 489.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:c5c37e3fee8da6c8d21970de5c02ed3f83088406872117358a730ce3b264a2ad
      Last Modified: Sat, 06 Jul 2024 01:46:38 GMT
      Size: 12.4 MB (12439509 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:dcc0a4b4e3e06702c136c1d97237f9c1650835af4e11ba3f613196324b925cc8
      Last Modified: Sat, 06 Jul 2024 01:46:36 GMT
      Size: 492.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:5982a12ee93d50a939e877fc37f3cba6e8ea9f3029ede48d951bd35e18d77173
      Last Modified: Sat, 06 Jul 2024 01:46:38 GMT
      Size: 11.8 MB (11819519 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:c8c9c97bb3b3217eedb4a9bf736fc4c0d28823eb4d9f089fd4cfcf060b182a93
      Last Modified: Sat, 06 Jul 2024 01:46:36 GMT
      Size: 2.5 KB (2459 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:01e002c025d9adde2ffb74ce95ad091c4a764ae161b4ec2f0babf2ff3f669c7e
      Last Modified: Sat, 06 Jul 2024 01:46:36 GMT
      Size: 246.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:ecab8709ae8c39d000df88457cc106a8a9f8ad2d46d9eee62fb488617679d7df
      Last Modified: Sat, 06 Jul 2024 01:46:36 GMT
      Size: 894.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:cb0c24e0863f63ef4550c2b4281e5f0b2bd13b8a7ed27299ac8558e3e3786506
      Last Modified: Sat, 06 Jul 2024 04:56:17 GMT
      Size: 27.3 MB (27338716 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:c2c7afe8dcdcfaaea1ad9c4310f916253e9ab66d61939be9e19300592df41627
      Last Modified: Sat, 06 Jul 2024 04:56:16 GMT
      Size: 11.3 MB (11253447 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:550939a398f29212e91725d93d0e725c261d727b9dcb400ad7c40d0baeba020f
      Last Modified: Sat, 06 Jul 2024 04:56:15 GMT
      Size: 362.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:e28899953933c9e6100aac16959a9be20b7c1cd686585910ce2954e34fb9bee1
      Last Modified: Sat, 06 Jul 2024 04:56:16 GMT
      Size: 393.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:463900b6701faef40f470d364a7d234f01edcee7ca91cc4f315edc412ac4a5c8
      Last Modified: Sat, 06 Jul 2024 04:56:16 GMT
      Size: 19.2 KB (19162 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:8b4c40b81cd5bb8c0ed8cef7f872c46ce4671ca373febdc9127af8751b00fc85
      Last Modified: Sat, 06 Jul 2024 04:56:18 GMT
      Size: 24.5 MB (24527867 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:a33716b79d80278620ff285ab2c5ea91ad83ad7127c6f2c0ace078aefedf32bd
      Last Modified: Sat, 06 Jul 2024 04:56:17 GMT
      Size: 2.4 KB (2352 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:ce3b9d3b0b015212e6059b602674cd88dd9595d2683a802491c8631283f52055
      Last Modified: Sat, 06 Jul 2024 04:56:17 GMT
      Size: 1.7 KB (1725 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip

wordpress:apache - unknown; unknown

$ docker pull wordpress@sha256:280ccc76b8612b932be3ae31185d74dc77b6658a677159c4804bf2a1f2fc31d4
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 8.0 MB (8000317 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:0902037f0d102f9327116b0edc6ce967e07914269de2abee43654a71f6c76e4a
  • Layers:
    • sha256:abd4c7b2cac6a9d8d1e95400a2f3c0ca78b38bddf3327bae6281d9eeb2a592e6
      Last Modified: Sat, 06 Jul 2024 04:56:15 GMT
      Size: 7.9 MB (7938135 bytes)
      MIME: application/vnd.in-toto+json
    • sha256:cc4bb4dcc9f300bb2b845fd224da138f41d3f87d3e8f33f2b82cdb24fd6e0c13
      Last Modified: Sat, 06 Jul 2024 04:56:14 GMT
      Size: 62.2 KB (62182 bytes)
      MIME: application/vnd.in-toto+json

wordpress:apache - linux; s390x

$ docker pull wordpress@sha256:8ae8fb74ccaff5ca611ebdb478ab98c464bdac17a8a2c5328dda6ad3ac5078ab
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 211.4 MB (211418272 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:d29c6c7979b8150ff8690abbb977bc9682321fb83e71d8a022dfbb37f829d1b0
  • Entrypoint: ["docker-entrypoint.sh"]
  • Default Command: ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
ADD file:e13e277230efdcc9e4a44bd7a459bf0e65b04440b6bbf292da87f61b4c9ae2fc in / 
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["bash"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	{ 		echo 'Package: php*'; 		echo 'Pin: release *'; 		echo 'Pin-Priority: -1'; 	} > /etc/apt/preferences.d/no-debian-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHPIZE_DEPS=autoconf 		dpkg-dev 		file 		g++ 		gcc 		libc-dev 		make 		pkg-config 		re2c
# Mon, 24 Jun 2024 19:12:59 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/*
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_INI_DIR=/usr/local/etc/php
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_CONFDIR=/etc/apache2
# Mon, 24 Jun 2024 19:12:59 GMT
ENV APACHE_ENVVARS=/etc/apache2/envvars
# Mon, 24 Jun 2024 19:12:59 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" 		"$APACHE_RUN_DIR/socks" 	; 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"
# Mon, 24 Jun 2024 19:12:59 GMT
RUN a2dismod mpm_event && a2enmod mpm_prefork
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo '<FilesMatch \.php$>'; 		echo '\tSetHandler application/x-httpd-php'; 		echo '</FilesMatch>'; 		echo; 		echo 'DirectoryIndex disabled'; 		echo 'DirectoryIndex index.php index.html'; 		echo; 		echo '<Directory /var/www/>'; 		echo '\tOptions -Indexes'; 		echo '\tAllowOverride All'; 		echo '</Directory>'; 	} | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" 	&& a2enconf docker-php
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_LDFLAGS=-Wl,-O1 -pie
# Mon, 24 Jun 2024 19:12:59 GMT
ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_VERSION=8.2.21
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_URL=https://www.php.net/distributions/php-8.2.21.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.21.tar.xz.asc
# Mon, 24 Jun 2024 19:12:59 GMT
ENV PHP_SHA256=8cc44d51bb2506399ec176f70fe110f0c9e1f7d852a5303a2cd1403402199707
# Mon, 24 Jun 2024 19:12:59 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 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" 		PHP_BUILD_PROVIDER='https://github.com/docker-library/php' 		PHP_UNAME='Linux - Docker' 	; 	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-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" = 'riscv64-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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| 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
# Mon, 24 Jun 2024 19:12:59 GMT
COPY multi:e11221d43af7136e4dbad5a74e659bcfa753214a9e615c3daf357f1633d9d3d1 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
RUN docker-php-ext-enable sodium
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-php-entrypoint"]
# Mon, 24 Jun 2024 19:12:59 GMT
STOPSIGNAL SIGWINCH
# Mon, 24 Jun 2024 19:12:59 GMT
COPY file:e3123fcb6566efa979f945bfac1c94c854a559d7b82723e42118882a8ac4de66 in /usr/local/bin/ 
# Mon, 24 Jun 2024 19:12:59 GMT
WORKDIR /var/www/html
# Mon, 24 Jun 2024 19:12:59 GMT
EXPOSE 80
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ghostscript 	; 	rm -rf /var/lib/apt/lists/* # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -ex; 		savedAptMark="$(apt-mark showmanual)"; 		apt-get update; 	apt-get install -y --no-install-recommends 		libfreetype6-dev 		libicu-dev 		libjpeg-dev 		libmagickwand-dev 		libpng-dev 		libwebp-dev 		libzip-dev 	; 		docker-php-ext-configure gd 		--with-freetype 		--with-jpeg 		--with-webp 	; 	docker-php-ext-install -j "$(nproc)" 		bcmath 		exif 		gd 		intl 		mysqli 		zip 	; 	curl -fL -o imagick.tgz 'https://pecl.php.net/get/imagick-3.7.0.tgz'; 	echo '5a364354109029d224bcbb2e82e15b248be9b641227f45e63425c06531792d3e *imagick.tgz' | sha256sum -c -; 	tar --extract --directory /tmp --file imagick.tgz imagick-3.7.0; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php; 	test "$(grep -c '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php)" = '1'; 	sed -i -e 's!^//#endif$!#endif!' /tmp/imagick-3.7.0/Imagick.stub.php; 	grep '^//#endif$' /tmp/imagick-3.7.0/Imagick.stub.php && exit 1 || :; 	docker-php-ext-install /tmp/imagick-3.7.0; 	rm -rf imagick.tgz /tmp/imagick-3.7.0; 		out="$(php -r 'exit(0);')"; 	[ -z "$out" ]; 	err="$(php -r 'exit(0);' 3>&1 1>&2 2>&3)"; 	[ -z "$err" ]; 		extDir="$(php -r 'echo ini_get("extension_dir");')"; 	[ -d "$extDir" ]; 	apt-mark auto '.*' > /dev/null; 	apt-mark manual $savedAptMark; 	ldd "$extDir"/*.so 		| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| sort -u 		| xargs -r dpkg-query --search 		| cut -d: -f1 		| sort -u 		| xargs -rt apt-mark manual; 		apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	rm -rf /var/lib/apt/lists/*; 		! { ldd "$extDir"/*.so | grep 'not found'; }; 	err="$(php --version 3>&1 1>&2 2>&3)"; 	[ -z "$err" ] # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	docker-php-ext-enable opcache; 	{ 		echo 'opcache.memory_consumption=128'; 		echo 'opcache.interned_strings_buffer=8'; 		echo 'opcache.max_accelerated_files=4000'; 		echo 'opcache.revalidate_freq=2'; 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN { 		echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; 		echo 'display_errors = Off'; 		echo 'display_startup_errors = Off'; 		echo 'log_errors = On'; 		echo 'error_log = /dev/stderr'; 		echo 'log_errors_max_len = 1024'; 		echo 'ignore_repeated_errors = On'; 		echo 'ignore_repeated_source = Off'; 		echo 'html_errors = Off'; 	} > /usr/local/etc/php/conf.d/error-logging.ini # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	a2enmod rewrite expires; 		a2enmod remoteip; 	{ 		echo 'RemoteIPHeader X-Forwarded-For'; 		echo 'RemoteIPInternalProxy 10.0.0.0/8'; 		echo 'RemoteIPInternalProxy 172.16.0.0/12'; 		echo 'RemoteIPInternalProxy 192.168.0.0/16'; 		echo 'RemoteIPInternalProxy 169.254.0.0/16'; 		echo 'RemoteIPInternalProxy 127.0.0.0/8'; 	} > /etc/apache2/conf-available/remoteip.conf; 	a2enconf remoteip; 	find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
RUN set -eux; 	version='6.5.5'; 	sha1='8d6a705f1b59367ec584a5fd4ab84aa53dd01c85'; 		curl -o wordpress.tar.gz -fL "https://wordpress.org/wordpress-$version.tar.gz"; 	echo "$sha1 *wordpress.tar.gz" | sha1sum -c -; 		tar -xzf wordpress.tar.gz -C /usr/src/; 	rm wordpress.tar.gz; 		[ ! -e /usr/src/wordpress/.htaccess ]; 	{ 		echo '# BEGIN WordPress'; 		echo ''; 		echo 'RewriteEngine On'; 		echo 'RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]'; 		echo 'RewriteBase /'; 		echo 'RewriteRule ^index\.php$ - [L]'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-f'; 		echo 'RewriteCond %{REQUEST_FILENAME} !-d'; 		echo 'RewriteRule . /index.php [L]'; 		echo ''; 		echo '# END WordPress'; 	} > /usr/src/wordpress/.htaccess; 		chown -R www-data:www-data /usr/src/wordpress; 	mkdir wp-content; 	for dir in /usr/src/wordpress/wp-content/*/ cache; do 		dir="$(basename "${dir%/}")"; 		mkdir "wp-content/$dir"; 	done; 	chown -R www-data:www-data wp-content; 	chmod -R 1777 wp-content # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
VOLUME [/var/www/html]
# Mon, 24 Jun 2024 19:12:59 GMT
COPY --chown=www-data:www-data wp-config-docker.php /usr/src/wordpress/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
# Mon, 24 Jun 2024 19:12:59 GMT
ENTRYPOINT ["docker-entrypoint.sh"]
# Mon, 24 Jun 2024 19:12:59 GMT
CMD ["apache2-foreground"]
  • Layers:
    • sha256:407bad4d6e39c8adb6cf98fb11c1bd255ae53204b7059378e0c0f6f76fa3c585
      Last Modified: Tue, 02 Jul 2024 00:48:33 GMT
      Size: 27.5 MB (27490090 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:e9251ecd224e15bee1af8e5d8ed06b4583727d21c25571b0841308fa40637020
      Last Modified: Tue, 02 Jul 2024 03:05:03 GMT
      Size: 225.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:5de732a471a32b9581046aa3735f5891fa36c8dc024c7c7a007087dd77b0bd3a
      Last Modified: Tue, 02 Jul 2024 03:05:16 GMT
      Size: 80.8 MB (80817736 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:d2f9b6de1c71adae007cab6934b2b7dfe2155be5d6b7fecfea770f4dca1aa159
      Last Modified: Tue, 02 Jul 2024 03:05:03 GMT
      Size: 223.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:ac393ffa46cdbdd309e76835caefc39b9a5f28208a5117719850422e50cd1830
      Last Modified: Tue, 02 Jul 2024 03:05:34 GMT
      Size: 20.1 MB (20101995 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:a2b9ac198003d25e1ae488b290fbd759f674d87fea5692596dc85177b0ad0014
      Last Modified: Tue, 02 Jul 2024 03:05:31 GMT
      Size: 435.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:efe10d7b17a1f1937efded756698b3791c41a781a95ad1f5b3436f29993e08d6
      Last Modified: Tue, 02 Jul 2024 03:05:31 GMT
      Size: 485.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:9001ad0031776cbc1c59cfaf531fe968adce5eff9708b472f2dbb5cd8a1c02ce
      Last Modified: Sat, 06 Jul 2024 02:10:56 GMT
      Size: 12.4 MB (12438606 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:cbf5e77c6cb140e611f1f6567bf9bdeca69265c27cc6fa26b3c50d26f57cda09
      Last Modified: Sat, 06 Jul 2024 02:10:54 GMT
      Size: 492.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:9db7b6da7c5dc47a3dfb96ed238f0b6fe3acc401319d03b2706f32bdbb517499
      Last Modified: Sat, 06 Jul 2024 02:10:56 GMT
      Size: 10.6 MB (10639966 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:889019a4ca3263ec74e7d1fe32492e1f96d294f96a989b42980c8d29179a1d39
      Last Modified: Sat, 06 Jul 2024 02:10:54 GMT
      Size: 2.5 KB (2461 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:a9a8d2423ebcab089af2116f17627bccb5d50b59cdeeee5dd4efe464d99bb9c9
      Last Modified: Sat, 06 Jul 2024 02:10:54 GMT
      Size: 246.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:2361c891e9824c97c5c4fcf8f8d9ab03c3c7460f2b604b4ad7bf36d0f1b67737
      Last Modified: Sat, 06 Jul 2024 02:10:54 GMT
      Size: 897.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:1f5e16d9e2a529de6b1c33f655b08e922453e9c2dbd2fd3cb32a8ac4e300564a
      Last Modified: Sat, 06 Jul 2024 04:21:19 GMT
      Size: 25.9 MB (25899195 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:a6d370cf92ca7a29972338c5b820d96d6e732144d31255072c7f3d395641612e
      Last Modified: Sat, 06 Jul 2024 04:21:19 GMT
      Size: 9.5 MB (9473367 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:87f60fecfcdb98152307def2f6f20f0a162b8da798265860471aa5eacb5d9cdc
      Last Modified: Sat, 06 Jul 2024 04:21:19 GMT
      Size: 359.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:6589f4a6d0914a3244215b638495659c51ae560def71535419064d1c66041233
      Last Modified: Sat, 06 Jul 2024 04:21:19 GMT
      Size: 389.0 B
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:b1d1cc4ee102d938026a4007fd3c975a0044c84fcd5f872cbb6f1f81d212f1c3
      Last Modified: Sat, 06 Jul 2024 04:21:20 GMT
      Size: 19.2 KB (19152 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:844bc8d99d29cd39385edbaea5e8aebd7fe81d20d5a7aac6f4f7c0337361298b
      Last Modified: Sat, 06 Jul 2024 04:21:20 GMT
      Size: 24.5 MB (24527869 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:067905cd1f55f2034b55b8799f2a18ef505df33df52949015cf8dcf435f73e76
      Last Modified: Sat, 06 Jul 2024 04:21:20 GMT
      Size: 2.4 KB (2352 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip
    • sha256:b7bc2af1dd5cc43b37391ae68f64e37f82f0627624c80c20c19dff11dfb9d147
      Last Modified: Sat, 06 Jul 2024 04:21:20 GMT
      Size: 1.7 KB (1732 bytes)
      MIME: application/vnd.oci.image.layer.v1.tar+gzip

wordpress:apache - unknown; unknown

$ docker pull wordpress@sha256:2ee1038c28ed613c7f4e5858a431665201aa5b088f90498f6cba440c8520ef4b
  • Manifest MIME: application/vnd.docker.distribution.manifest.v2+json
  • Total Size: 7.9 MB (7853232 bytes)
    (compressed transfer size, not on-disk size)
  • Image ID: sha256:e26251c641e1e7689b3bd86cfd9889daf66a4048ad33dd1f8216b5758165f096
  • Layers:
    • sha256:78cbd1cb093057aa0ce454a97ec37dc000bdf4c25476200e43af6ac4da9f6d60
      Last Modified: Sat, 06 Jul 2024 04:21:19 GMT
      Size: 7.8 MB (7791186 bytes)
      MIME: application/vnd.in-toto+json
    • sha256:02dbef590e3de25f7cf7440ae27462647fdd5c4d16488c66a61109e9d8076946
      Last Modified: Sat, 06 Jul 2024 04:21:18 GMT
      Size: 62.0 KB (62046 bytes)
      MIME: application/vnd.in-toto+json