欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Error response from daemon: rpc error

程序员文章站 2022-03-12 12:27:13
...

在使用docker stack deploy部署镜像服务时,出现下面错误:

failed to update secret report_config_global.conf: Error response from daemon: rpc error: code = InvalidArgument desc = only updates to Labels are allowed

调查发现,是端口冲突。然后才想起来,同样的compose文件,之前部署的服务忘记关闭了。

之后,使用

docker stack rm *** 

关闭你之前部署的服务,重新启动即可。