wildfly docker 图像认证问题

wildfly docker image authentication issue

我已按照以下 link 的说明进行操作:WildFly Docker image 扩展图像

部分

但是,在我构建之后,当我转到 URL http://localhost:9990 时,我收到以下消息:

The management interface could not be loaded.

Authentication required.

正如 James R. Perkins 在他的评论中指出的那样,我无法使用本地主机访问它,我使用了 docker 主机 IP 地址并且它有效

您需要映射 Wildfly 管理端口并允许远程连接到管理接口:

docker run -p 8080:8080 -p 9990:9990 -it jboss/wildfly -b 0.0.0.0 -bmanagement 0.0.0.0

这将允许通过 http://localhost:9990/console/App.html or http://127.0.0.1:9990/console/index.html 访问控制台(对于 Keycloak 图像)

来源:https://registry.hub.docker.com/r/jboss/wildfly