Nextcloud - Application Files no longer updates in my config folder since 28.0.2

Hello everyone,
I currently have a problem with my Nextcloud which is pulled from Linuxserver. Files application was not updated with the latest release 28.0.2.
So it causes me problems correcting normally in this last image.
The last modification of the files of “Files” application dates from 2023/12/25 in my folder.

There is a mount point from the beginning where Nextcloud has already stored the config and applications:

volumes:
      - /home/AppData/Nextcloud:/config
      - /srv/dev-disk-by-uuid-b9bfb584-7cd6-4b06-984d-62b78e4df682/nextcloud:/data

I have not touched the write and read rights on this file or the others.
I tried to re-create the container several times but without success.

Since then I have seen symbolic links appear that I never created but they point to the right places and the target folders have the right rights :

I don’t really know what to do anymore to try to recover the last files contained in the image.

If anyone has an idea I’m interested.

provide your container logs and compose

Of course :

version: "2"
services:
  nextcloud:
    image: linuxserver/nextcloud
    container_name: Nextcloud
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/Paris
    volumes:
      - /home/AppData/Nextcloud:/config
      - /srv/dev-disk-by-uuid-b9bfb584-7cd6-4b06-984d-62b78e4df682/nextcloud:/data
    ports:
      - 4433:443
    depends_on:
      - mariadb
    restart: unless-stopped
  mariadb:
    image: linuxserver/mariadb
    container_name: Mariadb
    environment:
      - PUID=1000
      - PGID=100
      - MYSQL_ROOT_PASSWORD=xxxxxxxxxxxxx
      - MYSQL_PASSWORD=
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
      - TZ=Europe/Paris
    volumes:
      - /home/AppData/MariaDB:/config
    restart: unless-stopped

However, I don’t have any error logs.
Rather, it is a malfunction of the Files application that is occurring.
I opened a bug (but ultimately this is not a nextcloud bug) before coming here :
https://github.com/nextcloud/server/issues/43406

After a big cleaning and some corrections/updating of my config.php compared to the config.sample.php everything is back to normal

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.