Kubernetes/Containerd/Docs/Nerdctl工具.md
offends 7a2f41e7d6
All checks were successful
continuous-integration/drone Build is passing
synchronization
2024-08-07 18:54:39 +08:00

1.0 KiB
Raw Permalink Blame History

本文作者:丁辉

Nerdctl工具

Github

开始安装

  1. 下载软件

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

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

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

基本使用

  • 查看 Containerd 镜像

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

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

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

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

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

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

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