Build docker images #441
Annotations
6 errors and 33 warnings
build (linux/amd64, develop, aio-apache, ./Containers/apache)
buildx failed with: ERROR: failed to solve: process "/bin/sh -c set -ex; apk upgrade --no-cache -a; apk add --no-cache shadow; groupmod -g 333 xfs; usermod -u 333 -g 333 xfs; groupmod -g 33 www-data; usermod -u 33 -g 33 www-data; apk del --no-cache shadow; mkdir -p /mnt/data; chown -R www-data:www-data /mnt/data; chown -R 777 /tmp; apk add --no-cache bash supervisor tzdata ca-certificates openssl bind-tools netcat-openbsd; sed -i -e '/^Listen /d' -e 's/^#\\(LoadModule .*mod_rewrite.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_headers.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_proxy.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_proxy_fcgi.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_setenvif.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_env.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_mime.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_dir.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_authz_core.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_alias.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_mpm_event.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_brotli.so\\)/\\1/' -e 's/\\(LoadModule .*mod_mpm_worker.so\\)/#\\1/' -e 's/\\(LoadModule .*mod_mpm_prefork.so\\)/#\\1/' -e 's/\\(ScriptAlias \\)/#\\1/' /usr/local/apache2/conf/httpd.conf; echo \"Include conf/nextcloud.conf\" | tee -a /usr/local/apache2/conf/httpd.conf; echo \"ServerName localhost\" | tee -a /usr/local/apache2/conf/httpd.conf; sed -i 's|MaxRequestWorkers.*|MaxRequestWorkers 5000|' /usr/local/apache2/conf/extra/httpd-mpm.conf; grep -q '<IfModule mpm_event_module>' /usr/local/apache2/conf/extra/httpd-mpm.conf; sed -i '/<IfModule mpm_event_module>/a\\ \\ \\ \\ ServerLimit 200' /usr/local/apache2/conf/extra/httpd-mpm.conf; rm -rf /usr/local/apache2/conf/original /var/www; mkdir -p /var/www; chown -R www-data:www-data /var/www; mkdir /var/log/supervisord; mkdir /var/run/supervisord; chown www-data:www-data /var/run/supervisord; chown www-data:www-data /var/log/supervisord; chmod 777 /var/run/supervisord; chmod 777 /var/log/supervisord; chown -R www-data:www-data /usr/local/apache2; chmod +r -R /usr/local/apache2; mkdir -p /usr/local/apache2/logs; chmod 777 -R /home/www-data; chmod 777 -R /usr/local/apache2/logs; rm -rf /usr/local/apache2/cgi-bin/; echo \"root:$(openssl rand -base64 12)\" | chpasswd" did not complete successfully: exit code: 6
|
build (linux/amd64, develop, all-in-one, ./Containers/mastercontainer)
buildx failed with: ERROR: failed to solve: process "/bin/sh -c set -ex; apk upgrade --no-cache -a; apk add --no-cache shadow; groupmod -g 333 xfs; usermod -u 333 -g 333 xfs; groupmod -g 33 www-data; usermod -u 33 -g 33 www-data; apk add --no-cache util-linux-misc ca-certificates wget bash apache2 apache2-proxy apache2-ssl supervisor openssl sudo netcat-openbsd curl grep; apk add --no-cache --virtual .build-deps autoconf build-base; pecl install APCu-5.1.23; docker-php-ext-enable apcu; rm -r /tmp/pear; runDeps=\"$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions | tr ',' '\\n' | sort -u | awk 'system(\"[ -e /usr/local/lib/\" $1 \" ]\") == 0 { next } { print \"so:\" $1 }' )\"; apk add --no-cache --virtual .nextcloud-aio-rundeps $runDeps; apk del .build-deps; grep -q '^pm = dynamic' /usr/local/etc/php-fpm.d/www.conf; sed -i 's/^pm = dynamic/pm = ondemand/' /usr/local/etc/php-fpm.d/www.conf; sed -i 's/^pm.max_children =.*/pm.max_children = 80/' /usr/local/etc/php-fpm.d/www.conf; sed -i 's|access.log = /proc/self/fd/2|access.log = /proc/self/fd/1|' /usr/local/etc/php-fpm.d/docker.conf; grep -q ';listen.allowed_clients' /usr/local/etc/php-fpm.d/www.conf; sed -i 's|;listen.allowed_clients.*|listen.allowed_clients = 127.0.0.1,::1|' /usr/local/etc/php-fpm.d/www.conf; apk add --no-cache git; wget https://getcomposer.org/installer -O - | php -- --install-dir=/usr/local/bin --filename=composer; chmod +x /usr/local/bin/composer; cd /var/www/docker-aio; git clone https://github.com/nextcloud-releases/all-in-one.git --depth 1 .; find ./ -maxdepth 1 -mindepth 1 -not -path ./php -not -path ./community-containers -exec rm -r {} \\; ; chown www-data:www-data -R /var/www/docker-aio; cd php; sudo -u www-data composer install --no-dev; sudo -u www-data composer clear-cache; cd ..; rm -f /usr/local/bin/composer; chmod -R 770 /var/www/docker-aio; chown -R www-data:www-data /var/www; rm -r php/data; rm -r php/session; mkdir -p /etc/apache2/certs; cd /etc/apache2/certs; openssl req -new -newkey rsa:4096 -days 3650 -nodes -x509 -subj \"/C=DE/ST=BE/L=Local/O=Dev/CN=nextcloud.local\" -keyout /etc/apache2/certs/ssl.key -out /etc/apache2/certs/ssl.crt; sed -i -e '/^Listen /d' -e 's/^LogLevel .*/LogLevel error/' -e 's|^ErrorLog .*|ErrorLog /proc/self/fd/2|' -e 's/User apache/User www-data/g' -e 's/Group apache/Group www-data/g' -e 's/^#\\(LoadModule .*mod_rewrite.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_headers.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_env.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_mime.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_dir.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_authz_core.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_mpm_event.so\\)/\\1/' -e 's/\\(LoadModule .*mod_mpm_worker.so\\)/#\\1/' -e 's/\\(LoadModule .*mod_mpm_prefork.so\\)/#\\1/' -e 's/\\(ScriptAlias \\)/#\\1/' /etc/apache2/httpd.conf; mkdir -p /etc/apache2/logs; rm /etc/apache2/conf.d/ssl.conf; echo \"ServerName localhost\" | tee -a /etc/apache2/httpd.conf; grep -q '^LoadModule lbmethod_heartbeat_module' /etc/apache2/conf.d/proxy.conf; sed -i 's|^LoadModule lbmethod_heartbeat_module.*|#LoadModule lbmethod_heartbeat_module|' /etc/apache2/conf.d/proxy.conf; echo \"SSLSessionCache nonenotnull\" | tee -a /etc/apache2/httpd.conf; echo \"LoadModule ssl_module modules/mod_ssl.so\" | tee -a /etc/apache2/httpd.conf; echo \"LoadModule socache_shmcb_module modules/mod_socache_shmcb.so\" | tee -a /etc/apache2/httpd.conf; echo \"Include /etc/apache2/sites-ava
|
build (linux/amd64, develop, aio-nextcloud, ./Containers/nextcloud)
buildx failed with: ERROR: failed to solve: process "/bin/sh -c set -ex; apk upgrade --no-cache -a; apk add --no-cache shadow; deluser www-data; groupmod -g 333 xfs; usermod -u 333 -g 333 xfs; addgroup -g 33 -S www-data; adduser -u 33 -D -S -G www-data www-data; apk add --no-cache rsync ; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS autoconf freetype-dev gmp-dev icu-dev imagemagick-dev imagemagick-svg imagemagick-heic imagemagick-tiff libevent-dev libjpeg-turbo-dev libmcrypt-dev libmemcached-dev libpng-dev libwebp-dev libxml2-dev libzip-dev openldap-dev pcre-dev postgresql-dev ; docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; docker-php-ext-configure ftp --with-openssl-dir=/usr; docker-php-ext-configure ldap; docker-php-ext-install -j \"$(nproc)\" bcmath exif gd gmp intl ldap opcache pcntl pdo_pgsql sysvsem zip ; pecl install igbinary-3.2.15; pecl install APCu-5.1.23; pecl install memcached-3.2.0 --configureoptions 'enable-memcached-igbinary=\"yes\"'; pecl install redis-6.0.2 --configureoptions 'enable-redis-igbinary=\"yes\" enable-redis-zstd=\"yes\" enable-redis-lz4=\"yes\"'; pecl install imagick-3.7.0; docker-php-ext-enable igbinary apcu memcached redis ; rm -r /tmp/pear; runDeps=\"$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions | tr ',' '\\n' | sort -u | awk 'system(\"[ -e /usr/local/lib/\" $1 \" ]\") == 0 { next } { print \"so:\" $1 }' )\"; apk add --no-cache --virtual .nextcloud-phpext-rundeps $runDeps; apk del .build-deps; { echo 'apc.serializer=igbinary'; echo 'session.serialize_handler=igbinary'; } >> /usr/local/etc/php/conf.d/docker-php-ext-igbinary.ini; { echo 'opcache.memory_consumption=256'; echo 'opcache.interned_strings_buffer=64'; echo 'opcache.save_comments=1'; echo 'opcache.revalidate_freq=60'; echo 'opcache.jit=1255'; echo 'opcache.jit_buffer_size=8M'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini; echo 'apc.enable_cli=1' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini; { echo 'memory_limit=${PHP_MEMORY_LIMIT}'; echo 'upload_max_filesize=${PHP_UPLOAD_LIMIT}'; echo 'post_max_size=${PHP_UPLOAD_LIMIT}'; echo 'max_execution_time=${PHP_MAX_TIME}'; echo 'max_input_time=${PHP_MAX_TIME}'; echo 'default_socket_timeout=600'; } > /usr/local/etc/php/conf.d/nextcloud.ini; { echo 'session.save_handler = redis'; echo 'session.save_path = \"tcp://${REDIS_HOST}:6379?auth=${REDIS_HOST_PASSWORD}\"'; echo 'redis.session.locking_enabled = 1'; echo 'redis.session.lock_retries = -1'; echo 'redis.session.lock_wait_time = 10000'; } > /usr/local/etc/php/conf.d/redis-session.ini; mkdir -p /var/www/data; chown -R www-data:root /var/www; chmod -R g=u /var/www; apk add --no-cache --virtual .fetch-deps bzip2 gnupg ; curl -fsSL -o nextcloud.tar.bz2 \"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2\"; curl -fsSL -o nextcloud.tar.bz2.asc \"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.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; mkdir -p /usr/src
|
build (linux/arm64, develop-arm64, all-in-one, ./Containers/mastercontainer)
buildx failed with: ERROR: failed to solve: process "/bin/sh -c set -ex; apk upgrade --no-cache -a; apk add --no-cache shadow; groupmod -g 333 xfs; usermod -u 333 -g 333 xfs; groupmod -g 33 www-data; usermod -u 33 -g 33 www-data; apk add --no-cache util-linux-misc ca-certificates wget bash apache2 apache2-proxy apache2-ssl supervisor openssl sudo netcat-openbsd curl grep; apk add --no-cache --virtual .build-deps autoconf build-base; pecl install APCu-5.1.23; docker-php-ext-enable apcu; rm -r /tmp/pear; runDeps=\"$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions | tr ',' '\\n' | sort -u | awk 'system(\"[ -e /usr/local/lib/\" $1 \" ]\") == 0 { next } { print \"so:\" $1 }' )\"; apk add --no-cache --virtual .nextcloud-aio-rundeps $runDeps; apk del .build-deps; grep -q '^pm = dynamic' /usr/local/etc/php-fpm.d/www.conf; sed -i 's/^pm = dynamic/pm = ondemand/' /usr/local/etc/php-fpm.d/www.conf; sed -i 's/^pm.max_children =.*/pm.max_children = 80/' /usr/local/etc/php-fpm.d/www.conf; sed -i 's|access.log = /proc/self/fd/2|access.log = /proc/self/fd/1|' /usr/local/etc/php-fpm.d/docker.conf; grep -q ';listen.allowed_clients' /usr/local/etc/php-fpm.d/www.conf; sed -i 's|;listen.allowed_clients.*|listen.allowed_clients = 127.0.0.1,::1|' /usr/local/etc/php-fpm.d/www.conf; apk add --no-cache git; wget https://getcomposer.org/installer -O - | php -- --install-dir=/usr/local/bin --filename=composer; chmod +x /usr/local/bin/composer; cd /var/www/docker-aio; git clone https://github.com/nextcloud-releases/all-in-one.git --depth 1 .; find ./ -maxdepth 1 -mindepth 1 -not -path ./php -not -path ./community-containers -exec rm -r {} \\; ; chown www-data:www-data -R /var/www/docker-aio; cd php; sudo -u www-data composer install --no-dev; sudo -u www-data composer clear-cache; cd ..; rm -f /usr/local/bin/composer; chmod -R 770 /var/www/docker-aio; chown -R www-data:www-data /var/www; rm -r php/data; rm -r php/session; mkdir -p /etc/apache2/certs; cd /etc/apache2/certs; openssl req -new -newkey rsa:4096 -days 3650 -nodes -x509 -subj \"/C=DE/ST=BE/L=Local/O=Dev/CN=nextcloud.local\" -keyout /etc/apache2/certs/ssl.key -out /etc/apache2/certs/ssl.crt; sed -i -e '/^Listen /d' -e 's/^LogLevel .*/LogLevel error/' -e 's|^ErrorLog .*|ErrorLog /proc/self/fd/2|' -e 's/User apache/User www-data/g' -e 's/Group apache/Group www-data/g' -e 's/^#\\(LoadModule .*mod_rewrite.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_headers.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_env.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_mime.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_dir.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_authz_core.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_mpm_event.so\\)/\\1/' -e 's/\\(LoadModule .*mod_mpm_worker.so\\)/#\\1/' -e 's/\\(LoadModule .*mod_mpm_prefork.so\\)/#\\1/' -e 's/\\(ScriptAlias \\)/#\\1/' /etc/apache2/httpd.conf; mkdir -p /etc/apache2/logs; rm /etc/apache2/conf.d/ssl.conf; echo \"ServerName localhost\" | tee -a /etc/apache2/httpd.conf; grep -q '^LoadModule lbmethod_heartbeat_module' /etc/apache2/conf.d/proxy.conf; sed -i 's|^LoadModule lbmethod_heartbeat_module.*|#LoadModule lbmethod_heartbeat_module|' /etc/apache2/conf.d/proxy.conf; echo \"SSLSessionCache nonenotnull\" | tee -a /etc/apache2/httpd.conf; echo \"LoadModule ssl_module modules/mod_ssl.so\" | tee -a /etc/apache2/httpd.conf; echo \"LoadModule socache_shmcb_module modules/mod_socache_shmcb.so\" | tee -a /etc/apache2/httpd.conf; echo \"Include /etc/apache2/sites-ava
|
build (linux/arm64, develop-arm64, aio-nextcloud, ./Containers/nextcloud)
buildx failed with: ERROR: failed to solve: process "/bin/sh -c set -ex; apk upgrade --no-cache -a; apk add --no-cache shadow; deluser www-data; groupmod -g 333 xfs; usermod -u 333 -g 333 xfs; addgroup -g 33 -S www-data; adduser -u 33 -D -S -G www-data www-data; apk add --no-cache rsync ; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS autoconf freetype-dev gmp-dev icu-dev imagemagick-dev imagemagick-svg imagemagick-heic imagemagick-tiff libevent-dev libjpeg-turbo-dev libmcrypt-dev libmemcached-dev libpng-dev libwebp-dev libxml2-dev libzip-dev openldap-dev pcre-dev postgresql-dev ; docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; docker-php-ext-configure ftp --with-openssl-dir=/usr; docker-php-ext-configure ldap; docker-php-ext-install -j \"$(nproc)\" bcmath exif gd gmp intl ldap opcache pcntl pdo_pgsql sysvsem zip ; pecl install igbinary-3.2.15; pecl install APCu-5.1.23; pecl install memcached-3.2.0 --configureoptions 'enable-memcached-igbinary=\"yes\"'; pecl install redis-6.0.2 --configureoptions 'enable-redis-igbinary=\"yes\" enable-redis-zstd=\"yes\" enable-redis-lz4=\"yes\"'; pecl install imagick-3.7.0; docker-php-ext-enable igbinary apcu memcached redis ; rm -r /tmp/pear; runDeps=\"$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions | tr ',' '\\n' | sort -u | awk 'system(\"[ -e /usr/local/lib/\" $1 \" ]\") == 0 { next } { print \"so:\" $1 }' )\"; apk add --no-cache --virtual .nextcloud-phpext-rundeps $runDeps; apk del .build-deps; { echo 'apc.serializer=igbinary'; echo 'session.serialize_handler=igbinary'; } >> /usr/local/etc/php/conf.d/docker-php-ext-igbinary.ini; { echo 'opcache.memory_consumption=256'; echo 'opcache.interned_strings_buffer=64'; echo 'opcache.save_comments=1'; echo 'opcache.revalidate_freq=60'; echo 'opcache.jit=1255'; echo 'opcache.jit_buffer_size=8M'; } > /usr/local/etc/php/conf.d/opcache-recommended.ini; echo 'apc.enable_cli=1' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini; { echo 'memory_limit=${PHP_MEMORY_LIMIT}'; echo 'upload_max_filesize=${PHP_UPLOAD_LIMIT}'; echo 'post_max_size=${PHP_UPLOAD_LIMIT}'; echo 'max_execution_time=${PHP_MAX_TIME}'; echo 'max_input_time=${PHP_MAX_TIME}'; echo 'default_socket_timeout=600'; } > /usr/local/etc/php/conf.d/nextcloud.ini; { echo 'session.save_handler = redis'; echo 'session.save_path = \"tcp://${REDIS_HOST}:6379?auth=${REDIS_HOST_PASSWORD}\"'; echo 'redis.session.locking_enabled = 1'; echo 'redis.session.lock_retries = -1'; echo 'redis.session.lock_wait_time = 10000'; } > /usr/local/etc/php/conf.d/redis-session.ini; mkdir -p /var/www/data; chown -R www-data:root /var/www; chmod -R g=u /var/www; apk add --no-cache --virtual .fetch-deps bzip2 gnupg ; curl -fsSL -o nextcloud.tar.bz2 \"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2\"; curl -fsSL -o nextcloud.tar.bz2.asc \"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.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; mkdir -p /usr/src
|
build (linux/arm64, develop-arm64, aio-apache, ./Containers/apache)
buildx failed with: ERROR: failed to solve: process "/bin/sh -c set -ex; apk upgrade --no-cache -a; apk add --no-cache shadow; groupmod -g 333 xfs; usermod -u 333 -g 333 xfs; groupmod -g 33 www-data; usermod -u 33 -g 33 www-data; apk del --no-cache shadow; mkdir -p /mnt/data; chown -R www-data:www-data /mnt/data; chown -R 777 /tmp; apk add --no-cache bash supervisor tzdata ca-certificates openssl bind-tools netcat-openbsd; sed -i -e '/^Listen /d' -e 's/^#\\(LoadModule .*mod_rewrite.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_headers.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_proxy.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_proxy_fcgi.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_setenvif.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_env.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_mime.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_dir.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_authz_core.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_alias.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_mpm_event.so\\)/\\1/' -e 's/^#\\(LoadModule .*mod_brotli.so\\)/\\1/' -e 's/\\(LoadModule .*mod_mpm_worker.so\\)/#\\1/' -e 's/\\(LoadModule .*mod_mpm_prefork.so\\)/#\\1/' -e 's/\\(ScriptAlias \\)/#\\1/' /usr/local/apache2/conf/httpd.conf; echo \"Include conf/nextcloud.conf\" | tee -a /usr/local/apache2/conf/httpd.conf; echo \"ServerName localhost\" | tee -a /usr/local/apache2/conf/httpd.conf; sed -i 's|MaxRequestWorkers.*|MaxRequestWorkers 5000|' /usr/local/apache2/conf/extra/httpd-mpm.conf; grep -q '<IfModule mpm_event_module>' /usr/local/apache2/conf/extra/httpd-mpm.conf; sed -i '/<IfModule mpm_event_module>/a\\ \\ \\ \\ ServerLimit 200' /usr/local/apache2/conf/extra/httpd-mpm.conf; rm -rf /usr/local/apache2/conf/original /var/www; mkdir -p /var/www; chown -R www-data:www-data /var/www; mkdir /var/log/supervisord; mkdir /var/run/supervisord; chown www-data:www-data /var/run/supervisord; chown www-data:www-data /var/log/supervisord; chmod 777 /var/run/supervisord; chmod 777 /var/log/supervisord; chown -R www-data:www-data /usr/local/apache2; chmod +r -R /usr/local/apache2; mkdir -p /usr/local/apache2/logs; chmod 777 -R /home/www-data; chmod 777 -R /usr/local/apache2/logs; rm -rf /usr/local/apache2/cgi-bin/; echo \"root:$(openssl rand -base64 12)\" | chpasswd" did not complete successfully: exit code: 6
|
build (linux/amd64, develop, aio-onlyoffice, ./Containers/onlyoffice)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-apache, ./Containers/apache)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-docker-socket-proxy, ./Containers/docker-socket-proxy)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-redis, ./Containers/redis)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-notify-push, ./Containers/notify-push)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-domaincheck, ./Containers/domaincheck)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-borgbackup, ./Containers/borgbackup)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, all-in-one, ./Containers/mastercontainer)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-onlyoffice, ./Containers/onlyoffice)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-watchtower, ./Containers/watchtower)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-watchtower, ./Containers/watchtower)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-postgresql, ./Containers/postgresql)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-clamav, ./Containers/clamav)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-nextcloud, ./Containers/nextcloud)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-collabora, ./Containers/collabora)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, all-in-one, ./Containers/mastercontainer)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-docker-socket-proxy, ./Containers/docker-socket-proxy)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-fulltextsearch, ./Containers/fulltextsearch)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-notify-push, ./Containers/notify-push)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-nextcloud, ./Containers/nextcloud)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-borgbackup, ./Containers/borgbackup)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-redis, ./Containers/redis)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-imaginary, ./Containers/imaginary)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-domaincheck, ./Containers/domaincheck)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-apache, ./Containers/apache)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-postgresql, ./Containers/postgresql)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-talk-recording, ./Containers/talk-recording)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-collabora, ./Containers/collabora)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-fulltextsearch, ./Containers/fulltextsearch)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/amd64, develop, aio-talk, ./Containers/talk)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-talk-recording, ./Containers/talk-recording)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-imaginary, ./Containers/imaginary)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build (linux/arm64, develop-arm64, aio-talk, ./Containers/talk)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/login-action@v2, docker/metadata-action@v4, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|