logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

docker 容器删除 镜像删除以及出现image is referenced in multiple repositories的解决方案

1.停止所有的container,这样才能够删除其中的images:docker stop $(docker ps -a -q)如果想要删除所有container的话再加一个指令:docker rm $(docker ps -a -q)2.查看当前有些什么imagesdocker images3.删除images,通过image的id来指定删除谁docker rmi <i...

使用kubeadm搭建公网通信的k8s集群

以下均为root用户登录安装docker更新yum包到最新yum update安装需要的软件包, yum-util 提供yum-config-manager功能,另外两个是devicemapper驱动依赖的yum install -y yum-utils device-mapper-persistent-data lvm2设置yum源yum-config-manager --add-repo ht

#k8s
docker build 报错: dial tcp xxxxxxxx:443: i/o timeout 切换镜像源

1. docker build 报错:error pulling image configuration: Get https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/13/13efce2de9076d5e1f80373bd5ffa86743c91d74451a68cb63f9df

ubuntu 18.04安装mongodb

我们安装社区版mongdbmongodb由Ubuntu提供的软件包不是 由MongoDB公司维护的,而是与mongodb-org软件包冲突 。要检查系统上mongodb是否安装了Ubuntu 软件包,请运行。在尝试此过程之前,您可以使用和删除并清除程序包。sudo apt list --installed | grep mongodbsudo apt remove mongodbsudo a...

Linux下配置vscode(终端字体篇)

在Ubuntu 18.04.1LTS 下的解决方案(亲测可用)下载安装字体$cd /usr/share/fonts/truetype/$sudo git clone https://github.com/abertsch/Menlo-for-Powerline.git刷新字体$sudo fc-cache -f -v回到Vs Code的setting.json中加入...

#linux
gitlab解决冲突(拉取到本地)

第一步:Fetch and check out the branch for this merge requestgit fetch origingit checkout -b 你的分支 origin/你的分支第二步: Review the changes locally第三步:Merge the branch and fix any conflicts that come upgit...

#git
到底了