Questions tagged [dockerhub]

Docker Hub is a cloud-based registry service developed by Docker Inc in order to distribute Docker images.

Docker Hub is a cloud-based registry service developed by Docker Inc in order to distribute images.

26 questions
87
votes
10 answers

Downloading Docker Images from Docker Hub without using Docker

I want to manually download a Docker Image from Docker Hub. More specifically, I want to download a Docker Image from Docker Hub on a machine in a restricted environment which does not (and cannot) have the Docker client software installed. I would…
igal
  • 1,590
  • 1
  • 11
  • 15
5
votes
1 answer

What is the biggest Docker image on Docker Hub and how to find it?

The lowest boundary of a Docker image can be very small i.e. under 1 MB (busybox) or even zero bytes (scratch). Now for research purporses, I need to reference the biggest Docker image on the Docker Hub. How to find it?
Ta Mu
  • 6,792
  • 5
  • 43
  • 83
4
votes
2 answers

Can not authenticate to DockerHub docker.io with ctr; works fine with crictl

Authentication works on crictl, when I use --creds $ sudo crictl pull --creds "evancarroll:$TOKEN" docker.io/alpine:3 But when I try the same command ctr, I get an error: $ sudo ctr images pull --user "evancarroll:$TOKEN"…
Evan Carroll
  • 2,921
  • 6
  • 37
  • 85
3
votes
1 answer

Docker Hub automated builds and Travis CI

I'm wanting to create a basic 'on new commits to master, rebuild the images and deploy to kubernetes' pipeline. Docker Hub has its concept of automated builds on new commits, but I'd still need to use Travis CI to do the kubernetes deployment. Is…
dwjohnston
  • 231
  • 3
  • 11
3
votes
1 answer

How do I get k3s to authenticate with Docker Hub?

In jornalctl -u k3s, I see a bunch of errors like this 429 Too Many Requests - Server message: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading:…
Evan Carroll
  • 2,921
  • 6
  • 37
  • 85
2
votes
1 answer

How to add LinkedIn's Burrow to a Docker Compose?

It appears LinkedIn doesn't have an official Burrow docker image on Docker Hub, but there are others who have forked it. However, I can't find any examples of how to add any of them to a docker compose file that spins up ZK and Kafka something like…
2
votes
1 answer

Is there a way to push tarred repository to dockerhub without loading on local

I have a tarred docker repository created by using docker save. I want to push this tar to a registry, say dockerhub. Is there a way we can do that without loading on local docker?
vinayawsm
  • 121
  • 2
2
votes
3 answers

Find most popular images with `zip` and `git` on Docker Hub

To speed up builds, I'd like to avoid install tools that I need on every commit with apt-get update -y && apt-get install -y git zip. Normal way is to create custom build image, register at Docker Hub and upload it there. But I am 100% sure that…
Anatoli Babenia
  • 143
  • 1
  • 8
1
vote
2 answers

How to create credentials for Docker Hub?

I was asked to use Docker Hub as part of a build/deploy pipeline. I am supposed to provide some authentication credentials to a third-party tool, so that this tool can push container images to private repos. Now, I don't see any place where I can…
Kev
  • 111
  • 3
1
vote
1 answer

Using Red Hat Docker image as base image

I am considering using https://access.redhat.com/containers/#/registry.access.redhat.com/rhel7 as a base image for my Dockerfile instead of getting some random image in DockerHub. The main reason is the vetting process the images undergo. Once any…
jackeblagare
  • 113
  • 2
1
vote
3 answers

Is there an image on dockerhub that is able to run make?

When one searches for make on dockerhub multiple images are returned, but none of them seems to be able to run make.
030
  • 13,383
  • 17
  • 76
  • 178
1
vote
0 answers

How to Ensure ArgoCD Is Monitoring Dockerhub?

Context I deployed an application on a Kubernetes cluster using Helm and ArgoCD. ArgoCD is tasked with monitoring a GitLab repo (called manifests) which contains the Helm chart and application config. As soon as a new config is pushed to GitLab, the…
Della
  • 133
  • 4
1
vote
0 answers

How to find dockerhub image tags using given docker image ID (sha)?

I have a server running docker containers for years. Containers was started from dockerhub images by tags, which do not include a specific version: $ docker ps | grep redis 0123456789ab redis:alpine "docker-entrypoint.s…" 19 months ago Up…
AntonioK
  • 19
  • 6
1
vote
1 answer

A better way to not use dockerhub - permanent config within docker?

I've searched the documentation for docker if this is possible and come up blank, but thought I'd pose the question here before shelving this. Is there a way to just tell Docker to use something other than dockerhub as a first port of call? We're…
1
vote
2 answers

Untracable glassfish docker container image or clean installation?

For a customer I need to create a glassfish container, containing the glassfish 5.0 release. I have been looking for standard glassfish images on docker hub, and other places, but can't manage to find a recent image containing a recent glassfish…
1
2