Docker setup : url resolution pb

Hi,
I’m trying to set up a docker config for a pydio cells install. My docker-compose file is almost exactly the compose given in the docs. For now, I’m trying without SSL (one pb at a time)
I’ve got some issues with the URL used, and I don’t really understand what’s happening :

  • using localhost:8080, it works out of the box
  • using the machine’s IP:8080, idem
  • using the machine FQDN, the installation script runs well, but the installation seem to fail (I get, in the end a Connection Failed error when reloading the page)

In the logs, I can see a suspicious error message : ERROR pydio.grpc.gateway.proxy Could not run {“error”: “cannot create storage without CA URL”}
Any idea what the problem is ?
By the way, I’m running Docker18.06.0-ce on Debian Stretch
Thanks,
Jean

Here is my docker-compose file’s content :

version: '2'
volumes:
  static: {}
  data: {}
services:
  cells:
    image: pydio/cells:1.2.0
    environment:
      CELLS_BIND: ${FQDN}:8080
      CELLS_EXTERNAL: ${FQDN}:8080
      CELLS_NO_SSL: '1'
    volumes:
    - static:/root/.config/pydio/cells/static/pydio
    - data:/root/.config/pydio/cells/data
    ports:
    - 8080:8080/tcp
    labels:
      io.rancher.container.pull_image: always
  mysql:
    image: mysql:5.7
    environment:
      MYSQL_DATABASE: cells
      MYSQL_PASSWORD: P@ssw0rd
      MYSQL_ROOT_PASSWORD: P@ssw0rd
      MYSQL_USER: pydio
    expose:
    - '3306'
    command:
    - mysqld
    - --character-set-server=utf8mb4
    - --collation-server=utf8mb4_unicode_ci

Hi,
Answering my own question, it seems it’s not possible to use a FQDN with CELLS_NO_SSL: ‘1’. I don’t get why, but that’s how it is.
So I’ll try to configure my SSL…