I installed openproject in CentOS 7 using docker. I changed the admin password and then I forgot it.
How can I reset it.?
For newer versions of OpenProject, Ulferts' solution seems not to work, but I was successfull using the information in this guide:
docker ps
.docker exec -u root -it <CONTAINER ID> /bin/bash
RAILS_ENV=production bundle exec rails c
u = User.find_by_login "admin"
u.password=u.password_confirmation='my new password'
u.save