type
status
date
slug
summary
tags
category
icon
password
Q1 问题:
使用docker rmi -f [imageid]无法删除镜像,并报错,见下面的批量删除操作:
docker rmi -f $(docker images -q)Error response from daemon: reference does not existError response from daemon: reference does not existError response from daemon: reference does not existError response from daemon:
解决:
1、使用tag删除
docker rmi -f [REPOSITORY]:[TAG ]
可以删除部分镜像。仍然有镜像删除不掉,只好用下面的大法了。
2、彻底删除所有镜像
注意:该命令会删除所有的镜像,在删除前,要先备份好需要保存的镜像。
Q2:问题
Docker安装RabbitMQ(以及访问15672端口失败)
安装docker后访问15672发现不能访问404;
解决:
执行命令


- Author:atsuc
- URL:https://blog.atsuc.cn/article/kaifa-docker-error-001
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!