I follow this [https://github.com/nextcloud/docker/tree/master/.examples/docker-compose/with-nginx-proxy-self-signed-ssl/mariadb/fpm] , only add redis and fill some values.
install docker-compose version is 1.24.
after using docker-compose up -d, it canât pass the graphic procure step one for creating database. i got the error as mentions in the title.
Was the db for nextcloud created after db-container up, or through the web install procedure?
I found that after running 'docker-compose up -d ', there were no datebase named nextcloud or user named nextcloud in db_container.
after changing host by âupdate user set host = â%â where user = ârootâ;â the error changed to:
âAccess denied for user ânextcloudâ (using password: YES)â
does this mean db container is not setup correctly? because user and db nextcloud are not created
I have solved my problem, just because i put password between single quotes, like this MYSQL_ROOT_PASSWORD=âpasswdâ, and make the mariadb canât init database and user for nextcloud.
after i delete single quotes, the graphic install process continue to success.