Hello,
I’m installing Pydio for the first time on my local machine to try it out. I followed the instructions for Launching Docker
, but swapping MariaDB in for Mysql in the docker-compose file. Both MariaDB and Pydio images install and start up fine, and I’m able to connect to the MariaDB instance from a local database app. When I go to install Pydio from localhost:8080, I run into a problem at the database configuration(see attached image). Is there a step I’m missing, or do I need run another version of MariaDB? Any thoughts are appreciated. Thanks.
Below is my docker-compose file:
version: '3'
services:
# Cells image with two named volumes for the static and for the data
cells:
image: pydio/cells:latest
restart: always
volumes: ["static:/root/.config/pydio/cells/static/pydio", "data:/root/.config/pydio/cells/data"]
ports: ["8080:8080"]
environment:
- CELLS_BIND=localhost:8080
- CELLS_EXTERNAL=localhost:8080
- CELLS_NO_SSL=1
# mariaDB image with a default database cells and a dedicated user pydio
mariadb:
image: mariadb
restart: always
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]
ports: ["3306:3306"]
volumes:
static: {}
data: {}