我创建了一个docker容器,网络中的每个人都可以访问它。那么有什么办法可以为特定容器设置任何身份验证。因为我是这项技术的新手。请帮助我。提前致谢。
我检查了手册页,它显示为登录选项。在这种情况下,它会帮助我吗?
答案 0 :(得分:0)
已经有类似问题的答案可以覆盖你的。看看Docker: What is the simplest way to secure a private registry?。
简而言之:
# Run the registry on the server, allow only localhost connection
docker run -p 127.0.0.1:5000:5000 registry
# On the client, setup ssh tunneling
ssh -N -L 5000:localhost:5000 user@server