-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pull debian 11.1 version instead of pulling all debian versions #194
Conversation
configs/docker.ini
Outdated
@@ -34,7 +34,7 @@ variant=docker | |||
# --------------------------------------------------------------------------- | |||
[power] | |||
variant=docker | |||
image=debian | |||
image=debian:11.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does specifying just debian pulling all versions of debian?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vj-kumar yes while testing i observed that it was pulling all debian version even the older versions too. this hangs our mtda service and not able to use any of the mtda commands.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
truly hang? if you do not have the specified image already downloaded then it will be pulled and that could take some time depending on your network load / speed
commit log should be prefixed with docker: |
@chombourger docker pull debian pulls all the versions of debian hence we have mentioned latest version and it is tested working fine. |
85ffaf8
to
f0d4e02
Compare
added prefix docker: to commit. |
BTW, 11.2 is the latest version. |
f0d4e02
to
0b0bc8e
Compare
updated to 11.2 |
commit log still says 11.1 :) |
Signed-off-by: Onkar Bokshe <OnkarSurendrakumar_Bokshe@mentor.com>
0b0bc8e
to
530549b
Compare
updated to 11.2 |
docker pull only pulls the latest version:
(a single image was downloaded) |
verified if we do not mention version it will install all version onkar@onkarhome:~$ docker images |
really strange. that's not what I am seeing here |
docker has a -a option to pull all tags. Maybe that option is pulled from some place, like a config? |
We don't use the |
Reproducible in my system. Distro: Ubuntu 21.04 (Hirsute Hippo) |
That's interesting. Let's see if #197 helps |
It does not. Fix coming up. |
#198 this should fix it. Tested with python3-docker version 4.1.0-1.2 |
Great, thanks! |
Signed-off-by: Onkar Bokshe OnkarSurendrakumar_Bokshe@mentor.com