Questions tagged [dockerhub]

Docker Hub is a product by Docker Inc built on top of the open source Docker Registry to distribute Docker images.

Docker Hub is a product by Docker Inc built on top of the open source Docker Registry to distribute Docker images.

Notable features:

  • Distribution of images (being a registry)
  • Open source images are free
  • Search for images
  • Distribution of the Docker official images
926 questions
37
votes
3 answers

How can I pull a Docker image from a private Docker Hub repo remotely?

I have several images in Docker Hub private repositories, and I need to pull these on remote machines using the Docker remote Rest API. Is there a way of authenticating remotely? These are the calls I'd like to make remotely: docker login docker…
Dan O'Leary
  • 2,660
  • 6
  • 24
  • 50
37
votes
3 answers

How to push a docker image with README file to docker hub?

I am trying to push a docker image to my private repo on docker hub. However, I do see that there is an "Information" section on the Docker Hub which I want to update with useful information about my image. I am wondering if I can push a README.md…
sunsin1985
  • 2,437
  • 5
  • 22
  • 27
35
votes
1 answer

Docker hub vs docker cloud

I have a small confusion between docker hub and docker cloud. I have docker images that I need to be installed in the client server and run the containers. I believe this can be done using docker hub which allows to push and pull docker images in my…
Jugi
  • 1,244
  • 3
  • 23
  • 51
34
votes
6 answers

Finding the actual version of latest version of docker image

docker pull jaegertracing/jaeger-agent:latest Jaeger is just for illustration. But my question is more generic. The above command pulls the latest version of the jaeger-agent from docker-hub. The docker-hub page for this is :…
Aravind
  • 515
  • 1
  • 5
  • 9
32
votes
4 answers

Pulling docker image by digest

I would like to ask why it is needed to specify both name and digest when pulling docker image? docker pull ubuntu@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2 Isn't it enough, just to pass the digest, or the digest is…
Stanimir Mitko
  • 323
  • 1
  • 3
  • 4
32
votes
2 answers

Pull all images with specific tag from repository

I want to pull all the images with tag 1.2.0 from here. Is this possible?
DenCowboy
  • 13,884
  • 38
  • 114
  • 210
32
votes
3 answers

Create a docker image/container from EC2 AMI

I am very new to docker and am trying to import my AWS EC2 AMI into a docker image. The image is a m2 linux image. I have also setup a private docker hub(artifactory) to which I intend to push the image and make it available for consumption. What…
user1795516
  • 451
  • 1
  • 8
  • 18
31
votes
3 answers

Docker: How do I pull a specific build-id?

I would like to always pull a specific version, rather than just the latest. A random example: https://registry.hub.docker.com/u/aespinosa/jenkins/builds_history/9511/ I am doing this because I only want to deploy versions that I have audited. Is…
Sam
  • 487
  • 1
  • 6
  • 9
29
votes
4 answers

Docker: Reverse Engineering of an Image

When we use Docker it's very easy push and pull image in a public repository in our https://hub.docker.com but this repository it's free only for public image(only one can be private). Currently it's possible to execute a reverse engineering of a…
daniele3004
  • 13,072
  • 12
  • 67
  • 75
28
votes
6 answers

Error response from daemon: manifest for ibmblockchain/fabric-peer:latest not found

I'm trying to run the docker pull ibmblockchain/fabric-peer command, but I'm getting this error message: Error response from daemon: manifest for ibmblockchain/fabric-peer:latest not found. Is there any other way to pull this image ? Also trying…
jitendra korde
  • 445
  • 1
  • 6
  • 11
26
votes
2 answers

Clone docker image to dockerhub account

Let's say one of the official docker base images ubuntu:latest and I have a dockerhub account myaccount. How to clone ubuntu:latest to myaccount's repository? The work flow can then be introduced as follows, $ docker pull myaccount/ubuntu:latest $…
sof
  • 9,113
  • 16
  • 57
  • 83
22
votes
3 answers

Kubernetes: --image-pull-policy always does not work

I have a Kubernetes deployment which uses image: test:latest (not real image name but it's the latest tag). This image is on docker hub. I have just pushed a new version of test:latest to dockerhub. I was expecting a new deployment of my pod in…
DenCowboy
  • 13,884
  • 38
  • 114
  • 210
22
votes
4 answers

docker toolbox mount file on windows

I am a beginner with docker and I am using a windows machine. But I have a problem mounting files using volumes. The documentation says the following thing about mount files on OSX and windows : Official docker docs Note: If you are using Docker…
afym
  • 532
  • 2
  • 6
  • 22
21
votes
4 answers

Kubernetes imagePullSecrets not working; getting "image not found"

I have an off-the-shelf Kubernetes cluster running on AWS, installed with the kube-up script. I would like to run some containers that are in a private Docker Hub repository. But I keep getting a "not found" error: > kubectl get pod NAME …
iameli
  • 773
  • 1
  • 6
  • 18
20
votes
1 answer

Why is the Ubuntu docker image not a VM

I get the big difference between VMs and containers. But that has me confused about how an Ubuntu container can even exist. It feels contradictory to me since Ubuntu is an OS. https://hub.docker.com/_/ubuntu Isn't this an entire guest OS? So what…
1
2
3
61 62