You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set the POSTFIXADMIN_SETUP_PASSWORD using environment variable but this appears to do nothing as I can't login to setup.php page using the specified password.
The text was updated successfully, but these errors were encountered:
Note the POSTFIXADMIN_SETUP_PASSWORD environment variable for specifying a setup_password does
not work so need to do the following to generate it and get postfixadmin going.
docker compose up -d
Navigate to webpage
http://dockerhost.local:8080/setup.php
Enter setup password in relevant section
Copy the hash generated
Edit /var/www/html/config.local.php from the volume created by docker compose
(or connect to container and edit within container)
Add the generated hash to relevant row:
$CONF['setup_password'] = 'copiedhashfromabove';
Now restart docker (noting will only be saved if using volumes)
You can now connect to the setup.php page again and create and admin user
http://dockerhost.local:8080/setup.php
Once admin user is created can log into postfix admin using
I set the POSTFIXADMIN_SETUP_PASSWORD using environment variable but this appears to do nothing as I can't login to setup.php page using the specified password.
The text was updated successfully, but these errors were encountered: