curl https://registry.hub.docker.com/v1/repositories/mysql/tags | python3 -m json.tool | more
可以保存為 shell 腳本, 方便使用
#!/bin/bash \n
echo '正在搜索鏡像 '$1' 的tags ...' \n
curl https://registry.hub.docker.com/v1/repositories/$1/tags | python3 -m json.tool | more