πŸ§ͺ Docker Hub experimental CLI tool
ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ ΠΊ Ρ„Π°ΠΉΠ»Ρƒ
Silvin Lubecki 80da07b590 Add scanning summaries column in the tag ls command
Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
2021-01-18 18:15:33 +01:00
.github Fix binary name in GitHub issue template 2021-01-06 12:59:53 +01:00
e2e gomod: Remove unneeded dependency 2020-11-20 15:59:06 +01:00
internal Add scanning summaries column in the tag ls command 2021-01-18 18:15:33 +01:00
packaging packaging: Create tarball/zip with license file 2020-10-23 16:43:53 +02:00
scripts/validate validate: Add debug diff for go mod check 2020-11-23 10:49:44 +01:00
.dockerignore dockerignore: Ignore unused Makefile 2020-10-23 16:43:53 +02:00
.gitattributes Fix windows tests, forcing lf instead of crlf on windows 2020-10-12 09:34:42 +02:00
.gitignore initialize CI, linters, Makefiles and Dockerfile 2020-09-17 15:35:31 +02:00
.golangci.yml initialize CI, linters, Makefiles and Dockerfile 2020-09-17 15:35:31 +02:00
Dockerfile build: Run validate headers in build step 2020-12-15 15:54:53 +01:00
LICENSE Initial commit 2020-09-17 10:56:41 +02:00
Makefile build: Use buildx 2020-12-16 12:00:56 +01:00
NOTICE Various fixes 2020-10-23 16:43:53 +02:00
README.md Move main.go to root directory, so one can install hub-tool using go install 2021-01-13 17:39:44 +01:00
builder.Makefile Move main.go to root directory, so one can install hub-tool using go install 2021-01-13 17:39:44 +01:00
go.mod Removing dependency on buildx, used to display manifest list in tag inspect command 2021-01-13 16:22:50 +01:00
go.sum Removing dependency on buildx, used to display manifest list in tag inspect command 2021-01-13 16:22:50 +01:00
main.go Move main.go to root directory, so one can install hub-tool using go install 2021-01-13 17:39:44 +01:00
vars.mk build: Move to Alpine build image, bump deps 2020-12-15 15:30:32 +01:00

README.md

πŸ§ͺ Docker Hub Tool

⚠️ This tool is a Docker experiment to build a Docker Hub CLI tool. The intention of this project is to get user feedback and then to add this functionality to the Docker CLI.

The Docker Hub Tool is a CLI tool for interacting with the Docker Hub. It makes it easy to get information about your images from the terminal and to perform Hub maintenance tasks.

Get started

Prerequisites

Install

  • Download the latest release for your platform from here
  • Extract the package and place the hub-tool binary somewhere in your PATH

OR

  • Install from sources: go install github.com/docker/hub-tool

Login to Docker Hub

Login to the Docker Hub using your username and password:

hub-tool login yourusername

Note: When using a personal access token (PAT), not all functionality will be available.

Listing tags

TAG                                   DIGEST                                                                     STATUS    LAST UPDATE    LAST PUSHED    LAST PULLED    SIZE
docker:stable-dind-rootless           sha256:c96432c62569526fc710854c4d8441dae22907119c8987a5e82a2868bd509fd4    stale     3 days ago     3 days                        96.55MB
docker:stable-dind                    sha256:f998921d365053bf7e3f98794f6c23ca44e6809832d78105bc4d2da6bb8521ed    stale     3 days ago     3 days                        274.6MB
docker:rc-git                         sha256:2c4980f5700c775634dd997484834ba0c6f63c5e2384d22c23c067afec8f2596    stale     3 days ago     3 days                        302.6MB
docker:rc-dind-rootless               sha256:ed25cf41ad0d739e26e2416fb97858758f3cfd1c6345a11c2d386bff567e4060    stale     3 days ago     3 days                        103.5MB
docker:rc-dind                        sha256:a1e9f065ea4b31de9aeed07048cf820a64b8637262393b24a4216450da46b7d6    stale     3 days ago     3 days                        288.9MB
docker:rc                             sha256:f8ecea9dc16c9f6471448a78d3e101a3f864be71bfe3b8b27cac6df83f6f0970    stale     3 days ago     3 days                        270.9MB
...
25/957 listed, use --all flag to show all

Contributing

Docker wants to work with the community to make a tool that is useful and to ensure that its UX is good. Remember that this is an experiment with the goal of incorporating the learnings into the Docker CLI so it has some rough edges and it's not meant to be a final product.

Feedback

Please leave your feedback in the issue tracker! We'd love to know how you're using this tool and what features you'd like to see us add.

Code

At this stage of the project, we're mostly looking for feedback. We will accept pull requests but these should be limited to minor improvements and fixes. Anything larger should first be discussed as an issue. If you spot a bug or see a typo, please feel free to fix it by putting up a pull request!

Building

Prerequisites

Compiling

To build for your current platform, simply run make and the tool will be output into the ./bin directory:

$ make
docker build --build-arg GO_VERSION=1.15.3 --build-arg ALPINE_VERSION=3.12.0 --build-arg GOLANGCI_LINT_VERSION=v1.31.0-alpine --build-arg TAG_NAME= --build-arg GOTESTSUM_VERSION=0.5.2 --build-arg BINARY_NAME=hub-tool --build-arg BINARY=hub-tool . \
                --output type=local,dest=./bin \
                --platform local \
                --target hub
[+] Building 3.7s (6/13)
...
 => => copying files 22.10MB

 $ ls bin/
 hub-tool