M4Pro内核MacOS brew安装docker爬坑

devtools/2024/12/26 16:47:00/

安装Docker和Docker-Compose

1 brew install docker

2 brew install docker-compose

3 docker —version

4 docker-compose —version

5 docker-ps报错:

解决方案:Mac需要安装Colima替代Desktop版本

brew install colima

brew unlink colima(重新安装docker后需要重装Colina,第一次安装skip)

 

启动Docker服务:

colima start --runtime docker

 

配置Docker镜像:

只在 colima ssh 环境下修改 docker 配置文件是无效的,我们需要修改 colima 配置文件才能使 docker 镜像源生效。此时你需要进入到~/.colima/default目录下编辑colima.yaml文件。

docker: 

  registry-mirrors:

    - https://docker.anyhub.us.kg/

    - https://hub.uuuadc.top/

    - https://dockerhub.jobcher.com/

    - https://dockerhub.icu/

    - https://docker.ckyl.me/

    - https://docker.awsl9527.cn/

    - https://q7ta64ip.mirror.aliyuncs.com

    - https://hx983jf6.mirror.aliyuncs.com

    - https://docker.mirrors.ustc.edu.cn

    - https://hub-mirror.c.163.com

    - https://docker.m.daocloud.io

    - https://mirror.baidubce.com

    - https://docker.nju.edu.cn

    - https://jockerhub.com

    - https://dockerhub.azk8s.cn

    - https://dockerproxy.com

    - https://mirror.baidubce.com

    - https://docker.nju.edu.cn

    - https://mirror.iscas.ac.cn

    - https://dockerpull.org

    - https://docker.1panel.dev

    - https://docker.fxxk.dedyn.io

    - https://docker.xn--6oq72ry9d5zx.cn

    - https://docker.zhai.cm

    - https://docker.5z5f.com

    - https://a.ussh.net

    - https://docker.cloudlayer.icu

    - https://hub.littlediary.cn

    - https://hub.crdz.gq

    - https://docker.unsee.tech

    - https://docker.kejilion.pro

    - https://registry.dockermirror.com

    - https://hub.rat.dev

    - https://dhub.kubesre.xyz

    - https://docker.nastool.de

    - https://docker.udayun.com

    - https://docker.rainbond.cc

    - https://hub.geekery.cn

    - https://docker.1panelproxy.com

    - https://atomhub.openatom.cn

    - https://docker.m.daocloud.io

    - https://hub.docker.com/

 

最后重启colima restart


http://www.ppmy.cn/devtools/144047.html

相关文章

使用FakeSMTP创建本地SMTP服务器接收邮件具体实现。

以下代码来自Let’s Go further节选。具体说明均为作者本人理解。 编辑邮件模版 主要包含三个template: subject:主题plainBody: 纯文本正文htmlBody:超文本语言正文 {{define "subject"}}Welcome to Greenlight!{{end}} {{def…

linux上qt打包(二)

sudo apt install git 新建一个文件夹 名为xiazai, chmod -R 777 xiazai cd xiazai 并进入这个文件夹,然后clone git clone https://github.com/probonopd/linuxdeployqt.git 此处可能要fanQiang才能下 cd linuxdeployqt文件夹 下载平台需要的…

Java操作FTP服务器(下)

Windwos中搭建FPT可以查看我的一篇文章《windows搭建ftp服务器(上)》 Java 操作 FTP 服务器通常使用 Apache Commons Net 库,这是一个功能强大的网络库,支持多种协议,包括 FTP。 一、我们需要在pom.xml中引入相…

mysql的事务控制和数据库的备份和恢复

事务控制语句 行锁和死锁 行锁 两个客户端同时对同一索引行进行操作 客户端1正常运行 客户端2想修改,被锁行 除非将事务提交才能继续运行 死锁 客户端1删除第5行 客户端2设置第1行为排他锁 客户端1删除行1被锁 客户端2更新行5被锁 如何避免死锁 mysql的备份和还…

【自动化部署】Ansible循环

文章目录 Ansible循环1. with_items2. with_list3. with_flattened4. with_together5. with_cartesian 和 with_nested Ansible 配置模板与效率优化一、配置模板1. 准备配置模板文件2. 修改 inventory 主机清单配置文件3. 编写 playbook 二、Ansible 执行效率优化1. 加大 forks…

大恒相机开发(2)—Python软触发调用采集图像

大恒相机开发(2)—Python软触发调用采集图像 完整代码详细解读和功能说明扩展学习 这段代码是一个Python程序,用于从大恒相机采集图像,通过软件触发来采集图像。 完整代码 咱们直接上python的完整代码: # version:…

linux 服务器安装jdk 1.8

jdk-8u171-linux-x64.tar.gz.temp 通常在下载完成之前都会有一个 .temp 的扩展名。 要安装这个 JDK,您需要执行以下步骤 mv jdk-8u171-linux-x64.tar.gz.temp jdk-8u171-linux-x64.tar.gz tar -zxvf jdk-8u171-linux-x64.tar.gz 创建jdk安装目录 mkdir -p …

wxpyton+wxFormBuilder加法运算示例

wxpythonwxFormBuilder加法运算示例 在wxFormBuilder里设计一个窗体,生成如下代码:calc_From.py 放在lib文件夹下面 import gettext import wx import wx.xrc _ gettext.gettext class MyFrame1(wx.Frame):def __init__(self, parent):wx.Frame.__init…