gpt4 book ai didi

docker - nginx 反向代理背后的 Nexus docker 存储库

转载 作者:行者123 更新时间:2023-12-02 19:17:14 30 4
gpt4 key购买 nike

我尝试在 nginx 反向代理后面设置 nexus docker 存储库(使用自签名 SSL 证书)。我使用这个官方的 docker-compose 文件:
https://github.com/sonatype-nexus-community/docker-nginx-nexus-repository
安装 docker-compose 后,我最终能够使用 ./nexus.sh 启动两个容器:nexus3 和 nginx。 .我尝试了几次,因为我不得不将 nexus 密码更改为 admin123并添加 nexus.scripts.allowCreation=true docker-nginx-nexus-repository_nexus-repository_1 内部容器(在 /nexus-data/etc/nexus.properties 中)否则 curl -v -u admin:admin123 --insecure --header 'Content-Type: application/json' 'https://localhost/service/rest/v1/script' -d @nexus-repository/create-docker-proxy.json会失败。最后,我在指向 DockerHub 的 http 端口 5000 上与 docker-proxy 存储库建立了联系。
此外,在我添加的主机上:

cat /etc/docker/daemon.json 
{
"insecure-registries": ["10.97.7.95:5000"]
}
和:
cat /etc/systemd/system/docker.service.d/http-proxy.conf
[Service]
Environment="HTTPS_PROXY=https://10.97.7.95:5000/"
并重新启动docker。
但是,一旦我尝试在主机上提取一些图像,就会出现以下错误:
# docker pull 10.97.7.95:5000/hello-world
Using default tag: latest
Error response from daemon: error parsing HTTP 400 response body: invalid character '<' looking for beginning of value: "<html>\r\n<head><title>400 The plain HTTP request was sent to HTTPS port</title></head>\r\n<body>\r\n<center><h1>400 Bad Request</h1></center>\r\n<center>The plain HTTP request was sent to HTTPS port</center>\r\n<hr><center>nginx/1.19.0</center>\r\n</body>\r\n</html>\r\n"
docker logs -f docker-nginx-nexus-repository_nginx-proxy_1显示:
172.18.0.1 - - [05/Jul/2020:16:21:08 +0000] "CONNECT 10.97.7.95:5000 HTTP/1.1" 400 157 "-" "-"
172.18.0.1 - - [05/Jul/2020:16:21:08 +0000] "GET /v2/ HTTP/1.1" 400 255 "-" "docker/19.03.8 go/go1.12.17 git-commit/afacb8b7f0 kernel/4.19.0-6-amd64 os/linux arch/amd64 UpstreamClient(Docker-Client/19.03.8 \x5C(linux\x5C))"
172.18.0.1 - - [05/Jul/2020:16:21:08 +0000] "GET /v2/hello-world/manifests/latest HTTP/1.1" 400 255 "-" "docker/19.03.8 go/go1.12.17 git-commit/afacb8b7f0 kernel/4.19.0-6-amd64 os/linux arch/amd64 UpstreamClient(Docker-Client/19.03.8 \x5C(linux\x5C))"
还:
# docker login 10.97.7.95:5000
Username: admin
Password:
Error response from daemon: login attempt to http://10.97.7.95:5000/v2/ failed with status: 400 Bad Request
我想念什么?

最佳答案

您自己的 docker-repository 在使用 nginx 的反向代理设置后面运行。如果您没有从您发布的 Github 存储库中更改 nginx.conf,则启用了 ssl。它在第 25 行说:ssl on;如果您尝试使用纯 HTTP 访问 HTTPS 端点,nginx 将响应 HTTP 400 - Bad Request。

关于docker - nginx 反向代理背后的 Nexus docker 存储库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62743361/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com