Docker Gitlab更改忘记的root密码

时间:2019-04-18 13:46:17

标签: docker gitlab root change-password

我在Docker和 我忘记了Gitlab的root密码。如何更改?

2 个答案:

答案 0 :(得分:1)

我找到了一种方法。 拳头通过命令行连接到您的Gitlab

搜索您的Docker CONTAINER_ID

docker ps -all

例如

enter image description here

docker exec -it d0bbe0e1e3db bash <-和您的CONTAINER_ID

$ gitlab-rails console production

enter image description here

user = User.where(id: 1).first
user.password = 'your secret'
user.password_confirmation = 'your secret'
user.save
exit

答案 1 :(得分:0)

我留下了更新到新版本的教程。就我而言,它用于在 Synology 上安装 Gitlab。

翻译(西班牙语 -> 英语) https://translate.google.com/translate?sl=es&tl=en&u=https://www.vicolinker.net/synology-gitlab-reset-root-password/

原文(西班牙语) https://www.vicolinker.net/synology-gitlab-reset-root-password/