{"id":18447689,"url":"https://github.com/koki-develop/docker-tags","last_synced_at":"2025-04-08T00:32:21.063Z","repository":{"id":65322555,"uuid":"589511369","full_name":"koki-develop/docker-tags","owner":"koki-develop","description":"🐳 Command line tool to get a list of tags for docker images.","archived":false,"fork":false,"pushed_at":"2024-04-13T20:17:01.000Z","size":158,"stargazers_count":12,"open_issues_count":12,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-04-14T10:51:46.549Z","etag":null,"topics":["cli","docker","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/koki-develop.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-01-16T09:45:06.000Z","updated_at":"2024-04-15T21:41:45.062Z","dependencies_parsed_at":"2024-03-07T21:23:24.587Z","dependency_job_id":"4519fb52-7dd1-4cc2-bd83-f0a0c4fd6c2f","html_url":"https://github.com/koki-develop/docker-tags","commit_stats":{"total_commits":68,"total_committers":1,"mean_commits":68.0,"dds":0.0,"last_synced_commit":"bdd07f52248925046d72ac5c8759a816fb161d8c"},"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koki-develop%2Fdocker-tags","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koki-develop%2Fdocker-tags/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koki-develop%2Fdocker-tags/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koki-develop%2Fdocker-tags/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/koki-develop","download_url":"https://codeload.github.com/koki-develop/docker-tags/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247755455,"owners_count":20990618,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","docker","golang"],"created_at":"2024-11-06T07:14:09.407Z","updated_at":"2025-04-08T00:32:16.053Z","avatar_url":"https://github.com/koki-develop.png","language":"Go","readme":"# docker-tags\n\n[![GitHub release (latest by date)](https://img.shields.io/github/v/release/koki-develop/docker-tags)](https://github.com/koki-develop/docker-tags/releases/latest)\n[![GitHub](https://img.shields.io/github/license/koki-develop/docker-tags)](./LICENSE)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/koki-develop/docker-tags/ci.yml?logo=github)](https://github.com/koki-develop/docker-tags/actions/workflows/ci.yml)\n[![Go Report Card](https://goreportcard.com/badge/github.com/koki-develop/docker-tags)](https://goreportcard.com/report/github.com/koki-develop/docker-tags)\n\nCommand line tool to get a list of tags for docker images.\nIt can also be used as a docker cli plugin.\n\n# Supported Registry\n\n\u003e [!NOTE]\n\u003e For the [Amazon ECR](https://aws.amazon.com/ecr/) and [ECR Public](https://docs.aws.amazon.com/AmazonECR/latest/public/index.html), an AWS Profile must be configured.  \n\u003e See [documentation](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) for details.\n\n\u003e [!NOTE]\n\u003e For the private [Google Container Registry](https://cloud.google.com/container-registry) and [Google Artifact Registry](https://cloud.google.com/artifact-registry), you must set Google's Application Default Credentials.  \n\u003e See [documentation](https://cloud.google.com/docs/authentication/application-default-credentials) for details.\n\n- [Docker Hub](https://hub.docker.com/)\n- [Amazon ECR](https://aws.amazon.com/ecr/)\n- [Amazon ECR Public](https://docs.aws.amazon.com/AmazonECR/latest/public/index.html)\n- [Google Container Registry](https://cloud.google.com/container-registry)\n- [Google Artifact Registry](https://cloud.google.com/artifact-registry)\n\n# Installation\n\n## Homebrew\n\n```sh\n$ brew install koki-develop/tap/docker-tags\n```\n\n## go install\n\n```sh\n$ go install github.com/koki-develop/docker-tags@latest\n```\n\n## Docker CLI Plugin\n\n```sh\n$ git clone https://github.com/koki-develop/docker-tags.git\n$ cd docker-tags\n$ make\n$ mkdir -p $HOME/.docker/cli-plugins/\n$ mv ./dist/docker-tags $HOME/.docker/cli-plugins/\n$ docker tags --help\n```\n\n## Release\n\nDownload the binary from the [releases page](https://github.com/koki-develop/docker-tags/releases/latest).\n\n# Usage\n\n```sh\nCommand line tool to get a list of tags for docker images.\n\nUsage:\n  docker-tags [IMAGE] [flags]\n\nFlags:\n      --aws-profile string   aws profile\n  -h, --help                 help for docker-tags\n  -o, --output string        output format (text|json) (default \"text\")\n  -v, --version              version for docker-tags\n  -n, --with-name            print with image name\n```\n\n```sh\n$ docker-tags alpine\nlatest\nedge\n3.9.6\n3.9.5\n...\n```\n\n```sh\n# json format\n$ docker-tags alpine -o json\n[\n  \"latest\",\n  \"edge\",\n  \"3.9.6\",\n  \"3.9.5\",\n  ...\n]\n```\n\n# LICENSE\n\n[LICENSE](./LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoki-develop%2Fdocker-tags","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoki-develop%2Fdocker-tags","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoki-develop%2Fdocker-tags/lists"}