我在将数据发送到statsd容器时遇到了问题。我可以在容器本身的命令行中成功地发送数据。我需要能够从主机或另一个Docker容器向它发送统计数据。
我正在使用基特列,我可以看到‘桥’网络的选择是检查在两个容器上。使用桥梁网络是我在这个问题上找到的一个建议。
我还尝试在运行命令构建容器时将'-P‘传递给Docker,因为这应该是公开端口的。在从另一个容器发送数据时,我没有注意到它的行为方式有什么不同。
运行以在本地主机上使用端口8125创建假统计信息的代码示例(取自此Docker容器网页)
让我们用随机计数器伪造一些数据来证明一切正常。
while true; do echo -
当我试图使用docker部署我的应用程序时,我得到了以下错误:
Creating network "<myapplicationnamehere_mycustomnetwork>" with the
default driver
could not find an available, non-overlapping IPv4 address pool among
the defaults to assign to the network
现在,我研究了一些地方,人们建议用docker network prune修剪未使用的老码头网络。但是,由于我运行的是34个
我正在尝试实现this tutorial。"docker-compose“内容如下: # WARNING: Do not deploy this tutorial configuration directly to a production environment
#
# The tutorial docker-compose files have not been written for production deployment and will not
# scale. A proper architecture has been sacrificed to keep th