πŸ§ͺ Docker Hub experimental CLI tool
ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ ΠΊ Ρ„Π°ΠΉΠ»Ρƒ
Silvin Lubecki 74bc560cdb
Merge pull request #222 from docker/fix-e2e-v2
Comment E2E and linter steps in release pipeline, as we already did a…
2024-02-27 17:38:23 +01:00
.github Comment E2E and linter steps in release pipeline, as we already did at PR level 2024-02-27 17:38:05 +01:00
e2e make linter happy 2024-02-27 16:18:53 +01:00
internal make linter happy 2024-02-27 16:18:53 +01:00
packaging packaging: Create tarball/zip with license file 2020-10-23 16:43:53 +02:00
pkg make linter happy 2024-02-27 16:18:53 +01:00
scripts/validate fix validate-headers target 2024-02-27 15:46:48 +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 make linter happy 2024-02-27 16:18:53 +01:00
LICENSE Initial commit 2020-09-17 10:56:41 +02:00
Makefile Add windows-arm64 cross build 2024-02-27 14:10:37 +01:00
NOTICE Various fixes 2020-10-23 16:43:53 +02:00
README.md Bump go version to 1.16.3 2021-05-05 16:52:17 +02:00
builder.Makefile Add windows-arm64 cross build 2024-02-27 14:10:37 +01:00
go.mod go mod tidy 2024-02-27 16:23:20 +01:00
go.sum Add windows-arm64 cross build 2024-02-27 14:10:37 +01:00
main.go make linter happy 2024-02-27 16:18:53 +01:00
vars.mk make linter happy 2024-02-27 16:18:53 +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: GO111MODULE=on go get 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.16.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