Pydio Cells in docker and External MariaDB

First of all, thanks for such product.
I am trying to install Pydio Cells in docker but with media DB. So the Maria DB exists only ones in server, not in docker. It has one fest IP and port.
So may be so one can help me with docker-compose.yml.
What parameters should i set do start pydio with such extern DB.
Hier is my example:
version: “2”

services:
  pydio:
    image: pydio/cell
    container_name: pydio
    restart: always
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/Berlin
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /sharedfolders/DS_AppData/Pydio:/var/cells
      - /sharedfolders/DS_Transfer/Pydio:/var/cells/data
    ports:
      - 8090:8080
    networks:
      - default

where should i set the DB Pramteres such as Host, Port, DBname, usr und pwd?

Thans for helping

Hello @niktonik,

Once you run the docker-compose, it will spin up a Cells container, then you will have access to the webui installer and during this step you will be asked to provide your database credentials.

By the way, if you want to use another port (such as 8090) you must also change the bind/external address for Cells, here is an example of a docker-compose file with the environment variables.

services:
  pydio:
    image: pydio/cell
    container_name: pydio
    restart: always
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/Berlin
      - CELLS_BIND=<ip or domain of your server>:8090
      - CELLS_EXTERNAL=https://<ip-or-domain>:8090 
      - CELLS_NO_TLS=0
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /sharedfolders/DS_AppData/Pydio:/var/cells
      - /sharedfolders/DS_Transfer/Pydio:/var/cells/data
    ports:
      - 8090:8080
    networks:
      - default

By default cells is ran with a self-signed certificate so you can reach the web installer with https://domain or address:8090, if you do not wish to have a self-signed make sure to remove the s from https in the CELLS_EXTNERAL env var and change CELLS_NO_TLS to 1.

Ok, nice, it works.
Maybe you can help me to mount other folder to pydio docker?

In my example i user this folder for data :- /sharedfolders/DS_Transfer/Pydio:/var/cells/data

but i want to mount other folders: for example /sharedfolders/DS_Docs and /sharedfolders/DS_Proj

do you have some idea where it should mounted? what is the best approach?

Thanks

Dimi