Since openproject doesn't seems to create an admin user, let's do it manually...

  • 1. create your user on the web interface
  • 2. enter the worker container:
docker ps
docker exec -u root -it <CONTAINER ID> /bin/bash
  • 3. activate your user and make him admin
RAILS_ENV=production bundle exec rails c
u = User.find_by_login "your username"
u.status="active"
u.admin = "true"
u.save
exit
exit
  • 4. ?????
  • 5. PROFIT