Hello.
I'm currently running on my Raspberry Pi Nextcloud docker image with tag 34. Generally it works fine, except the application page on the administration site. Whenever I access this page, it cannot load the apps, both currently installed and available to install. I'm getting following notification:
Which you could translate to "Couldn't load applications list. Try again later". And then on every subpage I'm getting empty list, for eg. this is "active appliations" page:
When I open developer console in Firefox, I see some error:
I don't see any errors in docker logs. Here is my docker-compose file:
nextcloud:
image: nextcloud:34
restart: unless-stopped
container_name: nextcloud
ports:
- 8484:80
volumes:
- data:/var/www/html
- '/mnt/nextcloud:/var/www/html/data'
environment:
- POSTGRES_PASSWORD=password
- POSTGRES_DB=nextcloud
- POSTGRES_USER=user
- POSTGRES_HOST=postgres
- REDIS_HOST=valkey
- REDIS_HOST_USER=user
- REDIS_HOST_PASSWORD=password```
Hello.
I'm currently running on my Raspberry Pi Nextcloud docker image with tag
34. Generally it works fine, except the application page on the administration site. Whenever I access this page, it cannot load the apps, both currently installed and available to install. I'm getting following notification:Which you could translate to "Couldn't load applications list. Try again later". And then on every subpage I'm getting empty list, for eg. this is "active appliations" page:
When I open developer console in Firefox, I see some error:
I don't see any errors in docker logs. Here is my docker-compose file: