Pydio - Collabora works for the first file clicked only

The second file when i click it says connecting then server disconnected, or i must wait a long time before i can edit it. But when i go for the first file that i click when pydio app loads up (pydio is like nextcloud but simpler) it works.

I get the following error (I’m running pydio and collabora in docker):

pydio-cells-1 | 2023-01-18T16:18:12.691Z ERROR cannot retrieve node with uuid {“NodeUuid”: “2a12a89d-124c-4acc-9ff0-a7267a840b91”, “error”: “{"Id":"path.not.readable","Code":403,"Detail":"path is not readable","Status":"Forbidden"}”, “UserName”: “admin”, “UserUuid”: “2c76601c-58fc-42d0-bc9f-0dcec0128c7f”, “GroupPath”: “/”, “Profile”: “admin”, “Roles”: “ROOT_GROUP,ADMINS,2c76601c-58fc-42d0-bc9f-0dcec0128c7f”}
pydio-cells-1 | 2023-01-18T16:18:12.692Z ERROR cannot find node from request {“error”: “{"Id":"path.not.readable","Code":403,"Detail":"path is not readable","Status":"Forbidden"}”, “UserName”: “admin”, “UserUuid”: “2c76601c-58fc-42d0-bc9f-0dcec0128c7f”, “GroupPath”: “/”, “Profile”: “admin”, “Roles”: “ROOT_GROUP,ADMINS,2c76601c-58fc-42d0-bc9f-0dcec0128c7f”}
pydio-collabora-1 | wsd-00001-00247 2023-01-18 16:18:12.693691 +0000 [ docbroker_00b ] ERR WOPI::CheckFileInfo failed for URI 404 Not Found. Headers: Alt-Svc: h3=“:443”; ma=2592000 / Content-Length: 0 / Content-Type: application/json; charset=UTF-8 / Date: Wed, 18 Jan 2023 16:18:12 GMT / Server: Caddy / Body: | wsd/Storage.cpp:687
pydio-collabora-1 | wsd-00001-00247 2023-01-18 16:18:12.693877 +0000 [ docbroker_00b ] ERR loading document exception: WOPI::CheckFileInfo failed: | wsd/DocumentBroker.cpp:2339
pydio-collabora-1 | wsd-00001-00247 2023-01-18 16:18:12.693928 +0000 [ docbroker_00b ] ERR Failed to add session to WOPI::CheckFileInfo failed: | wsd/DocumentBroker.cpp:2301
pydio-collabora-1 | wsd-00001-00247 2023-01-18 16:18:12.693969 +0000 [ docbroker_00b ] ERR Storage error while starting session on for socket #22. Terminating connection. Error: WOPI::CheckFileInfo failed: | wsd/COOLWSD.cpp:4737
pydio-collabora-1 | wsd-00001-00247 2023-01-18 16:18:12.714392 +0000 [ docbroker_00b ] WRN DocBroker got disconnected from its Kit (-1). Closing.| wsd/COOLWSD.cpp:3283
pydio-collabora-1 | wsd-00001-00034 2023-01-18 16:18:12.714676 +0000 [ prisoner_poll ] WRN Prisoner connection disconnected but without valid socket.| wsd/COOLWSD.cpp:3275
pydio-collabora-1 | wsd-00001-00034 2023-01-18 16:18:12.714770 +0000 [ prisoner_poll ] WRN An unassociated Kit disconnected.| wsd/COOLWSD.cpp:3290
pydio-collabora-1 | wsd-00001-00034 2023-01-18 16:18:12.831845 +0000 [ prisoner_poll ] WRN Attempted ping on non-upgraded websocket! #23| net/WebSocketHandler.hpp:573

This is my docker compose file

version: ‘3.7’
services:

caddy:
image: caddy:alpine
restart: unless-stopped
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
network_mode: “host”

cells:
image: pydio/cells:latest
restart: unless-stopped
network_mode: “host”
volumes:
- cellsdir:/var/cells
- data:/var/cells/data

mysql:
image: mysql:8
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: P@ssw0rd
MYSQL_DATABASE: cells
MYSQL_USER: pydio
MYSQL_PASSWORD: P@ssw0rd
command: [mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci]
volumes:
- mysqldir:/var/lib/mysql
network_mode: “host”

collabora:
image: collabora/code:latest
privileged: true
cap_add:
- MKNOD
restart: always
network_mode: “host”
environment:
- username=admin
- password=admin
- domain=local.docs

volumes:
data: {}
cellsdir: {}
mysqldir: {}

Perhaps bring it up to whoever maintains the WOPI integration for Collabora Online at Pydio.