• 查找镜像

      • docker search 关键字
        1. [root@kube-node1 ~]# docker search busybox
        2. INDEX NAME DESCRIPTION STARS OFFICIAL AUTOMATED
        3. docker.io docker.io/busybox Busybox base image. 2657 [OK]
        4. docker.io docker.io/radial/busyboxplus Full-chain, Internet enabled, busybox made... 49 [OK]
        5. docker.io docker.io/yauritux/busybox-curl Busybox with CURL 16
        6. docker.io docker.io/arm32v7/busybox Busybox base image. 10
        7. docker.io docker.io/arm64v8/busybox Busybox base image. 4
        8. docker.io docker.io/odise/busybox-curl 4 [OK]
        9. docker.io docker.io/i386/busybox Busybox base image. 3
        10. docker.io docker.io/busybox42/zimbra-docker-centos A Zimbra Docker image, based in ZCS 8.8.9 ... 2 [OK]
        11. docker.io docker.io/joeshaw/busybox-nonroot Busybox container with non-root user nobody 2
        12. docker.io docker.io/p7ppc64/busybox Busybox base image for ppc64. 2
        13. docker.io docker.io/prom/busybox Prometheus Busybox Docker base images 2 [OK]
        14. docker.io docker.io/s390x/busybox Busybox base image. 2
        15. docker.io docker.io/busybox42/haraka-docker-centos CentOS Haraka build with spamassassin, red... 1 [OK]
        16. docker.io docker.io/ppc64le/busybox Busybox base image. 1
        17. docker.io docker.io/spotify/busybox Spotify fork of https://hub.docker.com/_/b... 1
        18. docker.io docker.io/vukomir/busybox busybox and curl 1
        19. docker.io docker.io/amd64/busybox Busybox base image. 0
        20. docker.io docker.io/antrea/busybox 0
        21. docker.io docker.io/arm32v5/busybox Busybox base image. 0
        22. docker.io docker.io/busybox42/alpine-pod 0
        23. docker.io docker.io/ibmcom/busybox 0
        24. docker.io docker.io/ibmcom/busybox-amd64 0
        25. docker.io docker.io/ibmcom/busybox-ppc64le 0
        26. docker.io docker.io/openebs/busybox-client 0
        27. docker.io docker.io/rancher/busybox 0
        28. [root@kube-node1 ~]#
    • 下载镜像

      • docker pull 镜像名称:标签
        [root@kube-node1 ~]# docker pull docker.io/busybox
        Using default tag: latest
        Trying to pull repository docker.io/library/busybox ...
        latest: Pulling from docker.io/library/busybox
        Digest: sha256:3614ca5eacf0a3a1bcc361c939202a974b4902b9334ff36eb29ffe9011aaad83
        Status: Image is up to date for docker.io/busybox:latest
        [root@kube-node1 ~]#