-
Notifications
You must be signed in to change notification settings - Fork 5
First access
When you first log in, if you run Docker with the database_populate_default_data
property set to always
,
a default admin user will be created.
This user's email will be [email protected]
, and the password will be asd123
.
The admin user has full administrative privileges, allowing you to create new users.
Remember to change these default credentials promptly for security reasons.
It's important to note that using the database_populate_default_data
property with a value of always
is not
compatible with setting up database encryption (database.encryption.key
).
In this case, the script's data won't be encrypted using your key.
However, if you prefer to have an encrypted database, you can set database_populate_default_data
to never
and
configure the database.encryption.key
with your desired value.
By doing this, no pre-made initial data will be included during installation.
Consequently, no default users or data will be generated automatically.
In such a scenario, when you attempt to log in for the first time,
you'll need to create a user using the provided username and password.
For example:

Please ensure to be cautious of any typos during this step, as it is a one-time process. Remember that you will only set the password once without any confirmation.