Update apps and nextcloud in docker

Hello,
I’ve installed nextcloud and onlyoffice on docker from https://github.com/ONLYOFFICE/docker-onlyoffice-owncloud.
Now I’m having problems updating nextcloud and apps that I’ve enabled. It shows me that new updates are available for nextcloud and apps and when I click on update now, it appears that it’s updating it but does nothing.
What should I do to update the apps and nextcloud, would appreciate if someone could help me out here. Thanks.

Regards,
Alam

Same for me.

Same here.
I can’t update Theming and Contacts within the /settings/apps?category=updates# GUI.
I run Nextcloud over a docker-compose stack.
When I click it seems the update is in progress, but when I come back to the apps page, updates are still availables.

For me the problem was fixed by switching elements of the apps_paths config array:

'apps_paths' => 
  array (
    0 => 
    array (
      'path' => '/var/www/html/custom_apps',
      'url' => '/custom_apps',
      'writable' => true,
    ),
    1 => 
    array (
      'path' => '/var/www/html/apps',
      'url' => '/apps',
      'writable' => false,
    ),
  ),

I’ve read a discussion related to this problem but I cannot remember where.