Bash script find a a tags in ECR repo:
aws ecr describe-images --repository-name laplacelab-backend-repo 
      \ --query 'sort_by(imageDetails,& imagePushedAt)[*]'
      \--output json | jq -r '.[].imageTags'
Output:
[
  "v1",
  "sometag",
  ...
]
How I can extract the version number? v<number> can contain the only version tag. I need to get a number and increment version for the set to var. If output of sort_by(imageDetails,& imagePushedAt)[*] is empty JSON arr instead
[
    {
        "registryId": "057296704062",
        "repositoryName": "laplacelab-backend-repo",
        "imageDigest": "sha256:c14685cf0be7bf7ab1b42f529ca13fe2e9ce00030427d8122928bf2d46063bb7",
        "imageTags": [
            "v1"
        ],
        "imageSizeInBytes": 351676915,
        "imagePushedAt": 1593514683.0
    }
]
Set 2
No one repo sort_by(imageDetails,& imagePushedAt)[*] return [] set 1.
As a result, I try to get var VERSION with next version for an update or 1 if the repo is empty.
 
    