banner
NEWS LETTER

Nerdctl工具

Scroll down

本文作者:丁辉

Nerdctl工具

Github

开始安装

  1. 下载软件

    1
    wget https://github.com/containerd/nerdctl/releases/download/v1.7.6/nerdctl-1.7.6-linux-amd64.tar.gz
  2. 解压文件

    1
    tar -zxvf nerdctl-*-linux-amd64.tar.gz
  3. 安装

    1
    install -o root -g root -m 0755 nerdctl /usr/local/bin/nerdctl

基本使用

  • 查看 Containerd 镜像

    1
    nerdctl -n k8s.io images 
  • 登录镜像仓库

    1
    nerdctl -n k8s.io login <仓库地址> -u <账号> -p<密码>
  • 退出镜像仓库登录

    1
    nerdctl -n k8s.io logout <仓库地址>
  • 拉取镜像

    1
    nerdctl -n k8s.io pull nginx:latest
  • 更改镜像 TAG

    1
    nerdctl -n k8s.io tag nginx:v1 nginx:v2
  • 推送镜像

    1
    nerdctl -n k8s.io push nginx:latest --insecure-registry

    --insecure-registry 表示目标仓库是一个不安全的私有仓库,不需要进行TLS证书验证

I'm so cute. Please give me money.

其他文章
cover
Ctr基础命令
  • 70/01/01
  • 00:00
  • Kubernetes-Containerd
cover
Ubuntu部署Containerd配置Apt源
  • 70/01/01
  • 00:00
  • Kubernetes-Containerd
目录导航 置顶
  1. 1. Nerdctl工具
    1. 1.1. 开始安装
    2. 1.2. 基本使用
请输入关键词进行搜索