Skip to content

Commit 3dd4ab3

Browse files
Run update-remote.sh on nextcloud
1 parent a3545c6 commit 3dd4ab3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+9590
-4730
lines changed

repos/nextcloud/remote/29-apache.md

Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## `nextcloud:29-apache`
22

33
```console
4-
$ docker pull nextcloud@sha256:091cad994a261d5e05dcf634abb6d4c85f46337432c16c4334208590e02e2c03
4+
$ docker pull nextcloud@sha256:919b7ddb329d03ddf23804e19cb6ebd958df42f16b76013dd2fa0fac200221d5
55
```
66

77
- Manifest MIME: `application/vnd.oci.image.index.v1+json`
@@ -1334,13 +1334,13 @@ $ docker pull nextcloud@sha256:ed7aaa5e68be7f7bd01430ddda0fed668aa6a17e50cd8df37
13341334
### `nextcloud:29-apache` - linux; ppc64le
13351335

13361336
```console
1337-
$ docker pull nextcloud@sha256:c111ca96a99af9cbd1be23508d544612ce592f5d7c35448876c86a3afa1fd261
1337+
$ docker pull nextcloud@sha256:95b3d758970bb9401f0cc09d316ea64191955c3a4fe99da5dcd54acd0a5ed8e3
13381338
```
13391339

13401340
- Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
1341-
- Total Size: **455.6 MB (455561699 bytes)**
1341+
- Total Size: **455.9 MB (455883698 bytes)**
13421342
(compressed transfer size, not on-disk size)
1343-
- Image ID: `sha256:0f9520baf3324a27ac3dd24b6f0826e5f7335f4753dd66fab19ec0a18599e195`
1343+
- Image ID: `sha256:120ba2f00a53db30ce7b4ac9213e3ffdf0def1a1d4b48f5069c2e1f54a7f411e`
13441344
- Entrypoint: `["\/entrypoint.sh"]`
13451345
- Default Command: `["apache2-foreground"]`
13461346

@@ -1403,39 +1403,39 @@ WORKDIR /var/www/html
14031403
EXPOSE map[80/tcp:{}]
14041404
# Thu, 13 Mar 2025 21:54:41 GMT
14051405
CMD ["apache2-foreground"]
1406-
# Fri, 14 Mar 2025 00:34:18 GMT
1406+
# Wed, 19 Mar 2025 22:47:36 GMT
14071407
ENV IMAGICK_COMMIT_HASH=d7d3c24af1b4f599897408f1714600b69a56473b
1408-
# Fri, 14 Mar 2025 00:34:18 GMT
1408+
# Wed, 19 Mar 2025 22:47:36 GMT
14091409
RUN set -ex; apt-get update; apt-get install -y --no-install-recommends busybox-static bzip2 libldap-common libmagickcore-6.q16-6-extra rsync ; rm -rf /var/lib/apt/lists/*; mkdir -p /var/spool/cron/crontabs; echo '*/5 * * * * php -f /var/www/html/cron.php' > /var/spool/cron/crontabs/www-data # buildkit
1410-
# Fri, 14 Mar 2025 00:34:18 GMT
1410+
# Wed, 19 Mar 2025 22:47:36 GMT
14111411
ENV PHP_MEMORY_LIMIT=512M
1412-
# Fri, 14 Mar 2025 00:34:18 GMT
1412+
# Wed, 19 Mar 2025 22:47:36 GMT
14131413
ENV PHP_UPLOAD_LIMIT=512M
1414-
# Fri, 14 Mar 2025 00:34:18 GMT
1414+
# Wed, 19 Mar 2025 22:47:36 GMT
14151415
ENV PHP_OPCACHE_MEMORY_CONSUMPTION=128
1416-
# Fri, 14 Mar 2025 00:34:18 GMT
1416+
# Wed, 19 Mar 2025 22:47:36 GMT
14171417
RUN set -ex; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends libcurl4-openssl-dev libevent-dev libfreetype6-dev libgmp-dev libicu-dev libjpeg-dev libldap2-dev libmagickwand-dev libmcrypt-dev libmemcached-dev libpng-dev libpq-dev libwebp-dev libxml2-dev libzip-dev ; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; docker-php-ext-configure ftp --with-openssl-dir=/usr; docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; docker-php-ext-install -j "$(nproc)" bcmath exif ftp gd gmp intl ldap opcache pcntl pdo_mysql pdo_pgsql sysvsem zip ; curl -fsSL -o imagick.tar.gz "https://github.com/Imagick/imagick/archive/$IMAGICK_COMMIT_HASH.tar.gz"; tar -xzf imagick.tar.gz -C /tmp; rm imagick.tar.gz; cd "/tmp/imagick-$IMAGICK_COMMIT_HASH"; sed -i "s/@PACKAGE_VERSION@/git-$(echo ${IMAGICK_COMMIT_HASH} | cut -c 1-7)/" php_imagick.h; phpize; ./configure; make; make install; cd; rm -r "/tmp/imagick-$IMAGICK_COMMIT_HASH"; pecl install APCu-5.1.24; pecl install igbinary-3.2.16; pecl install memcached-3.3.0 --configureoptions 'enable-memcached-igbinary="yes"'; pecl install redis-6.1.0 --configureoptions 'enable-redis-igbinary="yes" enable-redis-zstd="yes" enable-redis-lz4="yes"'; docker-php-ext-enable apcu igbinary imagick memcached redis ; rm -r /tmp/pear; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; ldd "$(php -r 'echo ini_get("extension_dir");')"/*.so | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print 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/* # buildkit
1418-
# Fri, 14 Mar 2025 00:34:18 GMT
1418+
# Wed, 19 Mar 2025 22:47:36 GMT
14191419
RUN { echo 'opcache.enable=1'; echo 'opcache.interned_strings_buffer=32'; echo 'opcache.max_accelerated_files=10000'; echo 'opcache.memory_consumption=${PHP_OPCACHE_MEMORY_CONSUMPTION}'; echo 'opcache.save_comments=1'; echo 'opcache.revalidate_freq=60'; echo 'opcache.jit=1255'; echo 'opcache.jit_buffer_size=8M'; } > "${PHP_INI_DIR}/conf.d/opcache-recommended.ini"; echo 'apc.enable_cli=1' >> "${PHP_INI_DIR}/conf.d/docker-php-ext-apcu.ini"; { echo 'apc.serializer=igbinary'; echo 'session.serialize_handler=igbinary'; } >> "${PHP_INI_DIR}/conf.d/docker-php-ext-igbinary.ini"; { echo 'memory_limit=${PHP_MEMORY_LIMIT}'; echo 'upload_max_filesize=${PHP_UPLOAD_LIMIT}'; echo 'post_max_size=${PHP_UPLOAD_LIMIT}'; } > "${PHP_INI_DIR}/conf.d/nextcloud.ini"; mkdir /var/www/data; mkdir -p /docker-entrypoint-hooks.d/pre-installation /docker-entrypoint-hooks.d/post-installation /docker-entrypoint-hooks.d/pre-upgrade /docker-entrypoint-hooks.d/post-upgrade /docker-entrypoint-hooks.d/before-starting; chown -R www-data:root /var/www; chmod -R g=u /var/www # buildkit
1420-
# Fri, 14 Mar 2025 00:34:18 GMT
1420+
# Wed, 19 Mar 2025 22:47:36 GMT
14211421
VOLUME [/var/www/html]
1422-
# Fri, 14 Mar 2025 00:34:18 GMT
1422+
# Wed, 19 Mar 2025 22:47:36 GMT
14231423
RUN a2enmod headers rewrite remoteip ; { echo 'RemoteIPHeader X-Real-IP'; echo 'RemoteIPInternalProxy 10.0.0.0/8'; echo 'RemoteIPInternalProxy 172.16.0.0/12'; echo 'RemoteIPInternalProxy 192.168.0.0/16'; } > /etc/apache2/conf-available/remoteip.conf; a2enconf remoteip # buildkit
1424-
# Fri, 14 Mar 2025 00:34:18 GMT
1424+
# Wed, 19 Mar 2025 22:47:36 GMT
14251425
ENV APACHE_BODY_LIMIT=1073741824
1426-
# Fri, 14 Mar 2025 00:34:18 GMT
1426+
# Wed, 19 Mar 2025 22:47:36 GMT
14271427
RUN { echo 'LimitRequestBody ${APACHE_BODY_LIMIT}'; } > /etc/apache2/conf-available/apache-limits.conf; a2enconf apache-limits # buildkit
1428-
# Fri, 14 Mar 2025 00:34:18 GMT
1429-
ENV NEXTCLOUD_VERSION=29.0.13
1430-
# Fri, 14 Mar 2025 00:34:18 GMT
1431-
RUN set -ex; fetchDeps=" gnupg dirmngr "; apt-get update; apt-get install -y --no-install-recommends $fetchDeps; curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.13.tar.bz2"; curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.13.tar.bz2.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; gpg --batch --verify nextcloud.tar.bz2.asc nextcloud.tar.bz2; tar -xjf nextcloud.tar.bz2 -C /usr/src/; gpgconf --kill all; rm nextcloud.tar.bz2.asc nextcloud.tar.bz2; rm -rf "$GNUPGHOME" /usr/src/nextcloud/updater; mkdir -p /usr/src/nextcloud/data; mkdir -p /usr/src/nextcloud/custom_apps; chmod +x /usr/src/nextcloud/occ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $fetchDeps; rm -rf /var/lib/apt/lists/* # buildkit
1432-
# Fri, 14 Mar 2025 00:34:18 GMT
1428+
# Wed, 19 Mar 2025 22:47:36 GMT
1429+
ENV NEXTCLOUD_VERSION=29.0.14
1430+
# Wed, 19 Mar 2025 22:47:36 GMT
1431+
RUN set -ex; fetchDeps=" gnupg dirmngr "; apt-get update; apt-get install -y --no-install-recommends $fetchDeps; curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.14.tar.bz2"; curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.14.tar.bz2.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; gpg --batch --verify nextcloud.tar.bz2.asc nextcloud.tar.bz2; tar -xjf nextcloud.tar.bz2 -C /usr/src/; gpgconf --kill all; rm nextcloud.tar.bz2.asc nextcloud.tar.bz2; rm -rf "$GNUPGHOME" /usr/src/nextcloud/updater; mkdir -p /usr/src/nextcloud/data; mkdir -p /usr/src/nextcloud/custom_apps; chmod +x /usr/src/nextcloud/occ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $fetchDeps; rm -rf /var/lib/apt/lists/* # buildkit
1432+
# Wed, 19 Mar 2025 22:47:36 GMT
14331433
COPY *.sh upgrade.exclude / # buildkit
1434-
# Fri, 14 Mar 2025 00:34:18 GMT
1434+
# Wed, 19 Mar 2025 22:47:36 GMT
14351435
COPY config/* /usr/src/nextcloud/config/ # buildkit
1436-
# Fri, 14 Mar 2025 00:34:18 GMT
1436+
# Wed, 19 Mar 2025 22:47:36 GMT
14371437
ENTRYPOINT ["/entrypoint.sh"]
1438-
# Fri, 14 Mar 2025 00:34:18 GMT
1438+
# Wed, 19 Mar 2025 22:47:36 GMT
14391439
CMD ["apache2-foreground"]
14401440
```
14411441

@@ -1496,57 +1496,57 @@ CMD ["apache2-foreground"]
14961496
Last Modified: Tue, 07 Mar 2017 15:01:14 GMT
14971497
Size: 32.0 B
14981498
MIME: application/vnd.oci.image.layer.v1.tar+gzip
1499-
- `sha256:dffd66f90836da6029a2ba2c557801a333b7adc08b83c3e3eb965aefe88d730a`
1500-
Last Modified: Tue, 18 Mar 2025 11:26:36 GMT
1501-
Size: 22.6 MB (22623210 bytes)
1499+
- `sha256:ff103b3ddad9324b5e1bb5620095bd759cd33658d31168dfe2bd1f5400f9e0a9`
1500+
Last Modified: Thu, 20 Mar 2025 03:25:24 GMT
1501+
Size: 22.6 MB (22623326 bytes)
15021502
MIME: application/vnd.oci.image.layer.v1.tar+gzip
1503-
- `sha256:3ad3fac8c0cf5c98f237bfd008286ddcf3e933c7e8dc730ff0a0af141ac15da0`
1504-
Last Modified: Tue, 18 Mar 2025 11:26:36 GMT
1505-
Size: 21.7 MB (21702566 bytes)
1503+
- `sha256:cfe222c6f3e84cef553db2571c1eeeb95245cd0a616f45253bd0fb98fd81112b`
1504+
Last Modified: Thu, 20 Mar 2025 03:25:24 GMT
1505+
Size: 21.7 MB (21702530 bytes)
15061506
MIME: application/vnd.oci.image.layer.v1.tar+gzip
1507-
- `sha256:4504c8851f8c43e0454843ab61fad5167aedaccf9cb0aeb3ff127ba4fc0b4b1b`
1508-
Last Modified: Tue, 18 Mar 2025 11:26:34 GMT
1507+
- `sha256:f1dc83addf67111c98377a47a00f18b9365cfaa4882e1f69bc3e64e96b0c1ead`
1508+
Last Modified: Thu, 20 Mar 2025 03:25:23 GMT
15091509
Size: 793.0 B
15101510
MIME: application/vnd.oci.image.layer.v1.tar+gzip
1511-
- `sha256:ccb62633e033981f6f9a0bf1cc4deddbac690a8c741595ae8ba7bf9bb08c8170`
1512-
Last Modified: Tue, 18 Mar 2025 11:26:35 GMT
1513-
Size: 580.0 B
1511+
- `sha256:bfe270b35298868f928be9b6841307713781fc1bf030e886f64faa8d88828e72`
1512+
Last Modified: Thu, 20 Mar 2025 03:25:23 GMT
1513+
Size: 579.0 B
15141514
MIME: application/vnd.oci.image.layer.v1.tar+gzip
1515-
- `sha256:cd4fbd22e7af13abf08ddbe22b2a3c54d3ba2d79b2e5450d0dbc50cc060724e5`
1516-
Last Modified: Tue, 18 Mar 2025 11:26:36 GMT
1517-
Size: 405.0 B
1515+
- `sha256:e9a685c7c37cc61a75bd385240053d7d5d6cc714f431488004f13eeb29209cbb`
1516+
Last Modified: Thu, 20 Mar 2025 03:25:24 GMT
1517+
Size: 403.0 B
15181518
MIME: application/vnd.oci.image.layer.v1.tar+gzip
1519-
- `sha256:843d1d108d9ab7eb03135aa4ac2101833262afcb6ecc666d795cbd1b7f8a6a58`
1520-
Last Modified: Tue, 18 Mar 2025 11:26:42 GMT
1521-
Size: 230.4 MB (230430459 bytes)
1519+
- `sha256:8e0eb20f0dabaf557c76e81a55e4e9edabd38e09a467df2e1612f5f1dfb80111`
1520+
Last Modified: Thu, 20 Mar 2025 03:49:15 GMT
1521+
Size: 230.8 MB (230752382 bytes)
15221522
MIME: application/vnd.oci.image.layer.v1.tar+gzip
1523-
- `sha256:86ae3eb7db95b2ac8d84923590152fb8b5ab6450405ab4386d293aa4adc8ddaa`
1524-
Last Modified: Tue, 18 Mar 2025 11:26:37 GMT
1525-
Size: 3.9 KB (3883 bytes)
1523+
- `sha256:119d69154ac69b6ee60c62fc384d6e3b91d688e581a0e7676b5f2444fe979017`
1524+
Last Modified: Thu, 20 Mar 2025 03:49:04 GMT
1525+
Size: 3.9 KB (3884 bytes)
15261526
MIME: application/vnd.oci.image.layer.v1.tar+gzip
1527-
- `sha256:56c05def75b63f4bb9ddbc390ee746ce5d594c6cbfe46fdd28f2297e49b8d2c8`
1528-
Last Modified: Tue, 18 Mar 2025 11:26:37 GMT
1529-
Size: 2.4 KB (2414 bytes)
1527+
- `sha256:6c354955017e0e1579be3dabcdfb6eb0b911c2fe8adea4f3a36c4be8b96388f0`
1528+
Last Modified: Thu, 20 Mar 2025 03:49:04 GMT
1529+
Size: 2.4 KB (2412 bytes)
15301530
MIME: application/vnd.oci.image.layer.v1.tar+gzip
15311531

15321532
### `nextcloud:29-apache` - unknown; unknown
15331533

15341534
```console
1535-
$ docker pull nextcloud@sha256:2154bbaec02690867a4077adcff78102479c868533cd0e253dd483868dc55a6b
1535+
$ docker pull nextcloud@sha256:262803683a0f8e3b45a05984266d19aa7ba4a48704545d9c06f314c0c240b50f
15361536
```
15371537

15381538
- Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
1539-
- Total Size: **63.1 KB (63138 bytes)**
1539+
- Total Size: **63.1 KB (63139 bytes)**
15401540
(compressed transfer size, not on-disk size)
1541-
- Image ID: `sha256:0b9d601a7e85fe7efd2b5666431f871937f26bc4dc213ee9eb02d41d6a8717de`
1541+
- Image ID: `sha256:71f467c7280335fc80e8792d20a47d56fc099de48d3ca1a3228819951b92bdc9`
15421542

15431543
```dockerfile
15441544
```
15451545

15461546
- Layers:
1547-
- `sha256:6a5375e1a922c02df6dc2334b7e21c4a4940088e0726157a7689a633051d32ff`
1548-
Last Modified: Tue, 18 Mar 2025 11:26:34 GMT
1549-
Size: 63.1 KB (63138 bytes)
1547+
- `sha256:e5cbd1215dbfa5fdc2400d3dd04756d57739fd96d7a8e4e33b290323ae5f8546`
1548+
Last Modified: Thu, 20 Mar 2025 03:49:04 GMT
1549+
Size: 63.1 KB (63139 bytes)
15501550
MIME: application/vnd.in-toto+json
15511551

15521552
### `nextcloud:29-apache` - linux; s390x

0 commit comments

Comments
 (0)