I'm running my Gitlab with Docker and I forgot my Gitlab root password. How to change it ?
I found a way to make it work. First connect to your Gitlab with command line
search for your Docker CONTAINER_ID
docker ps -all
eg.
docker exec -it d0bbe0e1e3db bash
<-- with your CONTAINER_ID
$ gitlab-rails console -e production
user = User.where(id: 1).first
user.password = 'your secret'
user.password_confirmation = 'your secret'
user.save
exit