nexus3 上传 docker 镜像

nexus3 上传 docker 镜像 docker login 192.168.25.8:8082 docker tag xxxx 192.168.25.8:8082/repository/cloud-docker/image-test:0.1 docker push 192.168.25.8:8082/repository/cloud-docker/image-test:0.1 修改配置文件 首先需要在客户端配置,配置文件在: /etc/docker/daemon.json 内容形如: { "registry-mirrors": [ "加速地址" ], "insecure-registries": [ "...

July 19, 2023 · 1 分钟 · 210 字 · Tianlun Song

macOS 内存测试 memtest

macOS 内存测试 memtest 安装方法,命令行下执行: brew install memtester 关于homebrew安装brew.请访问: https://brew.sh/ 安装完成之后,也很简单。打开多个Termial. 然后每...

July 19, 2023 · 1 分钟 · 129 字 · Tianlun Song

查看所有由 docker-compose 启动的 docker

查看所有由 docker-compose 启动的 docker Docker Compose会为其创建的每个容器添加标签。如果您想获取由Compose创建的所有容器,可以执行container ls...

July 19, 2023 · 1 分钟 · 457 字 · Tianlun Song

ipmitool 基本使用

ipmitool 基本使用 # account ipmitool user list ipmitool user set password 2 password@123 # network # show network ipmitool lan print # set to static and show network ipmitool lan set 1 ipsrc static && ipmitool lan set 1 ipaddr 192.168.24.6 && ipmitool lan set 1 netmask 255.255.252.0 && ipmitool lan set 1 defgw ipaddr 192.168.27.254 && ipmitool lan print

July 17, 2023 · 1 分钟 · 63 字 · Tianlun Song

SSH 密钥类型及格式

SSH 密钥类型及格式 在使用 ssh-keygen 命令生成密钥对时,有这几个参数需要被注意: # 对密钥对的注释,会追加在公钥最后 -C comment Provides a new comment. # 密钥长度,详细请看描述 -b bits...

June 26, 2023 · 3 分钟 · 1468 字 · Tianlun Song