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
0
votes
1 answer

How to connect to a docker container from the outside world

I have a web application that is running inside docker container which is running on an Amazon Linux ec2 instance. I would like to connect to that container from the outside world. How would I do this? I tried using the ec2 instance's ip address…
Kingamere
  • 9,496
  • 23
  • 71
  • 110
0
votes
1 answer

Docker mongodb - how are data only containers portable

How are data only containers portable when they ultimately store data on the host under /var/lib/docker ? Let's say I have this data container on my machine that stores entries into a database. And now let's say someone else 500 miles away wants to…
Kingamere
  • 9,496
  • 23
  • 71
  • 110
0
votes
1 answer

Docker mongodb - add database on disk to container

I am running Docker on windows and I have a database with some entries on disk at C:\data\db. I want to add this database to my container. I have tried numerous ways to do this but failed. I tried: docker run -p 27017:27017 -v //c/data/db:/data/db…
Kingamere
  • 9,496
  • 23
  • 71
  • 110
0
votes
2 answers

deploying on AWS ECS via task definitions without dockerhub

Currently I'm using task-definitions that refer to custom images in dockerhub to deploy my webapp on ECS (Amazon EC2 Container Service). Is there a way to do this without going through dockerhub i.e. build/deploy the dockerfile locally across…
0
votes
1 answer

How to add information to registry.hub.docker.com?

I pushed a container onto my project in docker registry hub, there are two tabs Information and Tags, how could I add the Information for my container ?
Hello lad
  • 17,344
  • 46
  • 127
  • 200
0
votes
1 answer

Docker api: push an image to docker hub private repository

I can create a docker registry on 5000 port mapped to 5000 port on my local system. docker configuration file changed to --insecure-registry localhost:5000 to make the connection insecure. How can I push images to my private repo using docker api…
pheonix
  • 73
  • 6
0
votes
1 answer

automated docker hub builds won't trigger

I have a docker hub repository configured for automated builds. see image below. When I press the "save and trigger build" I get an error page saying nothing more than "Oops, there was an error!". I tried emailing docker support, but in vain. Any…
Tal
  • 7,827
  • 6
  • 38
  • 61
0
votes
1 answer

How do I push an image to my NON-public repo in dockerhub

How do I push to a non-public repository on dockerhub? Suppose the account is called “myaccount” and the (non-public) repo is called “myrepo”. In the repo page it says, “Pull this repository: docker pull myaccount/myrepo”. E.g., suppose I have an…
cliffberg
  • 11
  • 2
0
votes
3 answers

docker pull fails (not found) yet "number of pulls" increases

I am running docker on CentOS 7 following the official documentation from https://docs.docker.com When I try to pull a demo image I just created, I got this error: FATA[0013] Repository not found The strange thing is that the "Number of Pulls"…
wings
  • 791
  • 6
  • 21
0
votes
1 answer

Failed Image Build with DockerHub

Even though the last message in the DockerHub log: Successfully built 73dfc9054b7e DockerHub states that the status is 'Build Error'. The image builds correctly on multiple local machines, and the last message from the log has no errors. What could…
gwerner
  • 83
  • 1
  • 9
0
votes
0 answers

Automated Build - image without source files

I would like to create a docker image through Automated build on GitHub commit. My project structure /src /build project.json Gruntfile Dockerfile To build the project I have to: npm install grunt release How can I configure Docker Hub to perform…
lujcon
  • 576
  • 4
  • 8
0
votes
1 answer

Docker URI documentation

I noticed a new URI format for docker run. It is used in the "Try on Desktop" button here: https://registry.hub.docker.com/_/redis/ The link there has the following format: ... Does anyone know the format…
Sam Lee
  • 9,913
  • 15
  • 48
  • 56
0
votes
1 answer

Docker error when uploading image

When I try to upload a docker image to the docker hub using docker push myImage, I get the following error: lookup ***** on 127.0.1.1:53: no such host
doron aviguy
  • 2,554
  • 2
  • 22
  • 18
0
votes
0 answers

Mount a Host Directory as a Data Volume in docker?

when i try to mount a host directory as data volume in docker its not mount any directory to docker container(image). When i run sudo docker run -t -i --name web -v /home/rponna/src/webapp:/opt/webapp ramnathreddy it returns container id…
Ramnath Reddy
  • 605
  • 1
  • 5
  • 10
0
votes
1 answer

Error Pulling private docker repository from mac Boot2Docker

From my mac, successfully install Boot2Docker and everything seems to work well... However when I try to pull a remote private repository using the following command: sudo docker pull xxxx/yyyy I get this error message: FATA[0000] Post…
user3648235
  • 169
  • 4
  • 13