Cells - Timeout of 60000ms exceeded during login

Hi,
and if you do a docker logs -f <your cells container>, what does it say?

i used this docker-compose and i did not encounter the error,

version: '3'
services:

    # Cells image with two named volumes for the static and for the data
    cells:
        image: pydio/cells:latest
        volumes: ["data:/root/.config/pydio/cells/data"]
        ports: ["8080:8080"]
        environment:
            - CELLS_BIND=0.0.0.0:8080
            - CELLS_EXTERNAL=192.168.0.109:8080
            - CELLS_NO_SSL=1

    
    mysql:
         image: mariadb:10.2
         environment:
             MYSQL_ROOT_PASSWORD: root
             MYSQL_DATABASE: cells
         ports: ["3306:3306"]
         
volumes:
    data: {}

If you want to show me your compose file, so that i try it.