koalaops/Parse Image Registry
Parses a Docker image URL to extract cloud provider and registry information
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Maintainedlast commit Oct 27, 2025
- License
- MIT
Pinned Snippet
uses: koalaops/parse-image-registry@f76db3247b7e6e18fe015721fd9494d03d6e0380 # v1.0.3tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| image | Full Docker image URL (e.g., 123456789.dkr.ecr.us-east-1.amazonaws.com/my-service or us-central1-docker.pkg.dev/my-project/my-registry/my-service) | yes | — |
Outputs
| name | description |
|---|---|
| provider | Cloud provider (aws, gcp, azure, github, dockerhub, or generic) |
| account | Account/Project ID (AWS account, GCP project, Azure registry name, GitHub org, etc.) |
| region | Region/Location (if applicable) |
| registry | Full registry URL (without image name) |
| repository | Repository/image name (without registry) |
| registry_type | Type of registry (ecr, artifact-registry, acr, ghcr, dockerhub, generic) |
| tag | Image tag (if present in the image URL) |
| digest | Image digest (if present in the image URL) |