Nextcloud version (eg, 29.0.5): 29.0.1.1 (docker fpm-alpine)
Operating system and version (eg, Ubuntu 29.04): Debian bullseye
PHP version (eg, 8.3): <pre>8.2.20</pre>
The issue you are facing:
After updating the docker container from 28 to 29 I am stuck in an update loop. Normally I update using the web frontend. When accessing it it looks like this:
after refresh it looks lke this and then alternates between those two screens after every refresh:
When updating using occ upgrade this is the verbose log. However there are no errors. And the update seems to have been successfull. The frontend looks the same though.
Is this the first time you’ve seen this error? (Y/N):Y
Steps to replicate it:
no clue
The output of your Nextcloud log in Admin > Logging:
The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):
<?php
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\APCu',
'apps_paths' =>
array (
0 =>
array (
'path' => '/var/www/html/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => '/var/www/html/custom_apps',
'url' => '/custom_apps',
'writable' => true,
),
),
'instanceid' => 'xxx',
'passwordsalt' => 'xxx',
'secret' => 'xxx',
'trusted_domains' =>
array (
0 => '10.13.5.1',
),
'datadirectory' => '/var/www/html/data',
'dbtype' => 'mysql',
'version' => '29.0.1.1',
'overwrite.cli.url' => 'http://10.13.5.1',
'dbname' => 'nextcloud',
'dbhost' => 'db',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'nextcloud',
'dbpassword' => 'xxx',
'installed' => true,
'maintenance' => false,
'loglevel' => 0,
'theme' => '',
'app_install_overwrite' =>
array (
0 => 'richdocumentscode',
),
'maintenance_window_start' => 0,
'upgrade.disable-web' => true,
);

