Created
January 22, 2019 06:56
-
-
Save achimnol/403cff0430c0b25c73145ebf11b7a567 to your computer and use it in GitHub Desktop.
Reading Docker image labels from registry
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IMAGE=lablup/kernel-python | |
TAG=3.6-ubuntu18.04 | |
TOKEN=$(curl -s "https://auth.docker.io/token?scope=repository:$IMAGE:pull&service=registry.docker.io" | jq -r .token) | |
CONFIG_DIGEST=$(curl -s -H"Accept: application/vnd.docker.distribution.manifest.v2+json" -H"Authorization: Bearer $TOKEN" "https://registry-1.docker.io/v2/$IMAGE/manifests/$TAG" | jq -r .config.digest) | |
RESULT=$(curl -sL -H"Authorization: Bearer $TOKEN" "https://registry-1.docker.io/v2/$IMAGE/blobs/$CONFIG_DIGEST" | jq -r .container_config.Labels) | |
echo $RESULT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment