sh 在DockerHub中列出Docker镜像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在DockerHub中列出Docker镜像相关的知识,希望对你有一定的参考价值。

#!/bin/bash
# Based on kizbitz/dockerhub-v2-api-organization.sh at https://gist.github.com/kizbitz/175be06d0fbbb39bc9bfa6c0cb0d4721

# Example for the Docker Hub V2 API
# Returns all images and tags associated with a Docker Hub organization account.
# Requires 'jq': https://stedolan.github.io/jq/

# set username, password, and organization
UNAME=""
UPASS=""
ORG=""

# -------

set -e

# get token
TOKEN=$(curl -s -H "Content-Type: application/json" -X POST -d '{"username": "'${UNAME}'", "password": "'${UPASS}'"}' https://hub.docker.com/v2/users/login/ | jq -r .token)

# get list of repositories ordered by last_updated
curl -s -H "Authorization: JWT ${TOKEN}" https://hub.docker.com/v2/repositories/${ORG}/?page_size=200 | jq '.results|sort_by(.last_updated)|.[]|.namespace + "/" + .name + " updated=" + .last_updated'

以上是关于sh 在DockerHub中列出Docker镜像的主要内容,如果未能解决你的问题,请参考以下文章

Docker 镜像使用

Docker 镜像使用

Docker 镜像使用

Docker 命令 - search 命令

Docker镜像的使用

Docker 镜像