如何在 Atlantis 中启用基本身份验证?

How to enable basic authentication in Atlantis?

我正在尝试为 atlantis 启用基本身份验证我已经遵循了官方文档 here 但是 atlantis

似乎不支持以下设置
docker run runatlantis/atlantis:v0.18.1 server --gitlab-user=username --gitlab-token=token --web-basic-auth=true --web-username=admin --web-password=password --repo-allowlist="gitlab.com/group/*"

当服务器是运行时我可以不用username/password

登录

根据 https://github.com/runatlantis/atlantis/releases/tag/v0.18.2 版本 v0.18.2 已解决基本身份验证问题

fix: add back basic auth support by @Aayyush in #2008

docker run runatlantis/atlantis:v0.18.2 server --gitlab-user=username --gitlab-token=token --web-basic-auth=true --web-username=admin --web-password=password --repo-allowlist="gitlab.com/group/*"