netbox-docker/build-functions/get-public-image-config.sh

19 lines
375 B
Bash
Raw Permalink Normal View History

#!/bin/bash
2023-04-19 10:14:44 +02:00
check_if_tags_exists() {
local image=$1
local tag=$2
skopeo list-tags "docker://$image" | jq -r ".Tags | contains([\"$tag\"])"
}
get_image_label() {
local label=$1
local image=$2
skopeo inspect "docker://$image" | jq -r ".Labels[\"$label\"]"
}
get_image_last_layer() {
local image=$1
skopeo inspect "docker://$image" | jq -r ".Layers | last"
}