docker-registry Questions
2
I'm trying to use Kubernetes with Docker. My image runs with Docker. I have one master-node and two worker-nodes. I also created a local registry like this $ docker run -d -p 5000:5000 --restart=al...
Tuque asked 21/1, 2020 at 15:42
1
Solved
I've been looking at different references on how to enable k3s (running on my pi) to pull docker images from a private registry on my home network (server laptop on my network). If someone can plea...
Twayblade asked 16/2, 2021 at 11:42
3
Given a Docker Registry at localhost:5000, how can I use the Docker Registry HTTP API V2 and curl to delete busybox:latest that has the following manifest header and manifest:
derek@derekmahar-ubu...
Dwarfism asked 4/5, 2016 at 16:16
2
I followed the Docker Registry installation docs precisely, and have a registry running on a remote Ubuntu VM. On that VM, the Docker container is running with the following command:
docker run -d...
Dermatophyte asked 21/9, 2015 at 19:42
1
I'm in the progress of pushing some docker images through the internet to our host. Seeing as Docker compresses the images on the fly, and the CLI reports total image size before compression, I use...
Sholeen asked 8/8, 2016 at 20:32
3
I have a server with a docker registry, and have pushed a lot of times a build the same :latest tag now my DD is full and I can't get how to diet it.
disk is full
df -h
Filesystem Size Used Avail U...
Chymotrypsin asked 4/1, 2017 at 15:56
3
Solved
I start the container registry:
docker run --name artifactory -d -p 8081:8081 -p 8082:8082 docker.bintray.io/jfrog/artifactory-jcr:latest
I was able to login using the UI and create a repository e...
Premaxilla asked 21/11, 2020 at 20:21
8
Solved
How can I create an AWS ECR repository if it doesn't already exist?
Joplin asked 25/6, 2018 at 17:12
1
Solved
I need to cache docker images while pulling from the docker hub in my Harbor "Proxy Cache " project. Therefore I have configured a project with an option Proxy Cache. The registries secti...
Osteo asked 3/10, 2020 at 20:30
1
Solved
I am trying to get a good understanding of Docker best practices and to clarify what is the difference between:
sharing the Dockerfile (specs/build configuration) including language specific confi...
Miliary asked 29/9, 2020 at 14:27
1
Solved
i have serveral services in my docker-compose file, it looks like this:
version: '3.7'
services:
web:
build: ./
command: gunicorn --bind 0.0.0.0:5000 --workers 2 --worker-connections 5000 --tim...
Darmstadt asked 23/9, 2020 at 4:15
1
Do I have to first have to clone the wait-for-it repo and edit the parts of the wait-for-it.sh file?
https://github.com/vishnubob/wait-for-it/blob/master/wait-for-it.sh
I'm trying to make my main f...
Pocketknife asked 31/7, 2020 at 20:29
3
Solved
I want to configure a local docker registry with self-signed certificate which i will be using inside my local network. I'm following instruction from docker manual [1, 2], but nevertheless run int...
Forrer asked 11/11, 2017 at 13:16
4
Solved
As we all known, we can add one --insecure-registry to the /etc/default/docker config file to allow insecure registry, like this:
DOCKER_OPTS="$DOCKER_OPTS --insecure-registry myregistry:5000"
M...
Renfred asked 16/10, 2015 at 12:5
7
I'm using Travis CI for building docker images from Dockerfiles and then pushing them to the Docker Hub on success.
I've created an MD file describing the image and how to use it. I want to have t...
Barnardo asked 10/1, 2016 at 20:39
2
I try to push container to Heroku by this command:
sudo heroku container:push web --app <my-heroku-app>
But I got this error "no basic auth credentials".
How to solve this??????
Ther...
Human asked 22/5, 2020 at 16:32
2
Solved
I'm trying to get the labels of an image without pulling it.
For example: in docker-hub, on my username (stavalfi), in repo: projecty: https://hub.docker.com/v2/repositories/stavalfi/projecty/tags
...
Knowable asked 26/6, 2020 at 18:13
1
I have just installed docker and then try running hello-worldprogram.
My server is behind proxy of company. So, I set proxy environment variables according to manual from docker in a file named /et...
Outhaul asked 20/5, 2020 at 7:21
2
Solved
I'm trying to push a multi-arch docker image to docker hub and run into errors (opened docker issue at https://github.com/docker/distribution/issues/3100):
❯ docker build -t andig/evcc:latest-amd6...
Cither asked 11/3, 2020 at 9:33
3
Solved
I'm aware of JFrog Artifactory Pro for support of private docker registry which we can use to push and pull the docker images from Artifactory. I want to know whether same support is available with...
Junoesque asked 22/9, 2019 at 12:42
2
Solved
I created a repository on hub.docker.com and now want to push my image to the Dockerhub using my credentials. I am wondering whether I have to use my username and password or whether I can create s...
Bal asked 24/1, 2017 at 17:27
2
I upgraded my Mac (OS X) from an older Docker installation to Docker Toolbox, meaning that I'm now working with Docker Machine, and in the process discovered that certs I had working for push/pull ...
Convulse asked 25/2, 2016 at 21:23
3
I setup the registry v2 and use nginx as reverse proxy. When I push the image to registy, it error out 413 Request Entity Too Large.
I have modify the client_max_body_size as 20MB in nginx.conf. T...
Dredi asked 1/2, 2016 at 4:17
7
I am trying to deploy a docker configuration with images on a private docker registry.
Now, every time I execute docker login registry.example.com, I get the following error message:
error getting...
Paddie asked 7/7, 2018 at 11:58
2
I would like to run a private, secure, authenticated docker registry on a self healing AWS ECS cluster. The cluster setup is done and works properly, but I struggled getting the registry:latest run...
Siblee asked 15/9, 2016 at 10:20
© 2022 - 2024 — McMap. All rights reserved.