When I try to connect to the POSTGRESQL database, I get this error : SQLSTATE[08006] [7] FATAL: the role 'aurelien' does not exist
Here the dockercomposer.yml :
        - ROY_POSTGRESQL_ADDON_HOST=192.***.***
        - ROY_POSTGRESQL_ADDON_DB=******
        - ROY_POSTGRESQL_ADDON_PORT=5432
        - ROY_POSTGRESQL_ADDON_USER=aurelien
I have created my database, but when I connect to my database and i make '\d' :
          List of relations
 Schema |   Name   | Type  |  Owner
--------+----------+-------+----------
 public | wb_vente | table | aurelien
here are all the roles of my database:
                                  List of roles
Role name |                         Attributes                         | Member of
-----------+------------------------------------------------------------+-----------
aurel     |                                                            | {}
aurelien  |                                                            | {}
postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
what can i do please?
All my pg_hba.conf and postgresql.conf files are well configured
