Anyone get Redmine working?

I was able to create a Redmine container, but am not able to log in. The default username & password according to the documentation (both username & password are supposedly admin are not working.

“Invalid user or password”.

I then this site someone noticed the password changed to turnkey. That didn’t work for me either.

Last thing I tried the Docker Hub page, at the bottom, lists the available environment variables.

REDMINE_USERNAME=admin
REDMINE_PASSWORD=admin
Code

environment:
# ALLOW_EMPTY_PASSWORD is not recommended for production environment.
- ALLOW_EMPTY_PASSWORD=yes
- REDMINE_DATABASE_HOST=mariadb
- REDMINE_DATABASE_PORT_NUMBER=3306
- REDMINE_DATABASE_USER=bn_redmine
- MARIADB_PASSWORD={some_password}
- REDMINE_DATABASE_NAME=bitnami_redmine
- REDMINE_USERNAME=admin
- REDMINE_PASSWORD=admin

Figured it out.

Despite the documentation saying that the default username & password are both admin, and adding the REDMINE_USERNAME & REDMINE_PASSWORD, looking at the list of allowed environment variables & default values.

User Name = user
Password = bitnami1

Wow, that took me too long to figure out.

Hope this helps someone.

Still need to figure out how to get the proper logo for custom apps.