-
Notifications
You must be signed in to change notification settings - Fork 8
Description
I successfully pulled and ran the webkul/aureuserp:latest Docker image. The container starts, and both MySQL and Apache services appear to be running according to the logs.
However, when attempting to log in to the application through the web interface using the default admin credentials ([email protected] / admin123), I receive the error:
"These credentials do not match our records."
I also tried resetting the admin password directly in the MySQL database, but the login still fails.
Docker logs show multiple warnings and restarts for the ssh service, but MySQL and Apache seem to start successfully:
WARN exited: ssh (exit status 1; not expected)
INFO success: apache2 entered RUNNING state
INFO success: mysql entered RUNNING state
It seems that either the default users are not properly initialized in this Docker image, or the password hashing/system does not match the database.
Steps to reproduce:
docker pull webkul/aureuserp:latest
docker run -itd -p 80:80 -p 3306:3306 --name aureuserp webkul/aureuserp:latest
Access the web interface at http://localhost
Attempt to log in with [email protected] / admin123
Expected behavior:
Should be able to log in using the default admin credentials.
Actual behavior:
Login fails with "These credentials do not match our records."
Additional notes:
Resetting the password directly in MySQL does not resolve the issue.
PHP Artisan commands like php artisan erp:install are not usable within this Docker setup as far as I can tell.