我有一个作为柯南服务器运行的泊坞窗容器。我正在尝试将一些柯南软件包从另一个Docker容器上传到柯南服务器。输入用户名和密码后,出现以下错误

 Error uploading file: conanmanifest.txt,
    'HTTPConnectionPool(host='localhost', port=9300): Max retries exceeded with url: /v1/files/hello/0.1/demo/testing/0/export/conanmanifest.txt?signature=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJyZXNvdXJjZV9wYXRoIjoiaGVsbG8vMC4xL2RlbW8vdGVzdGluZy8wL2V4cG9ydC9jb25hbm1hbmlmZXN0LnR4dCIsInVzZXJuYW1lIjoiZGVtbyIsImZpbGVzaXplIjo1OCwiZXhwIjoxNTg1NDQyMjYyfQ.7sHncjZ7J8gV5HENMqCIwLe7b483QfrGJ2PVyolvjC4
         (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f99c84d2e50>:

Failed to establish a new connection: [Errno 111] Connection refused'))'

        ERROR: hello/0.1@demo/testing: Upload recipe to 'my_server' failed: Execute upload again to retry upload the failed files: conanfile.py, conanmanifest.txt. [Remote: my_server]

ERROR: Errors uploading some packages

我运行了以下命令docker run -t -p 9300:9999 --name mycont my_conan
然后相应地编辑server.conf文件
port:9300
public_port:9999
host_name: containerIP

从现在开始,我希望可以通过curl http://localhost:9999到达,但越来越
Failed to connect to localhost port 9999: Connection refusedPS:从我的主机到服务器,它运行正常。我想从容器上传到容器时出现错误

最佳答案

我通过将自定义配置文件复制到docker容器来解决此问题。否则,我无法覆盖默认配置文件。

1. Write custom config file
2. COPY or ADD to image (in Dockerfile)
3. mv custom.conf /path/to/directory/ (from entrypoint)

09-06 21:58