You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this Feature/Enhancement related to an Existing Problem? If so, please describe:
It would be awesome to be able to to such a thing:
docker tag test local-registry:5000/test/image:1.0.0
hauler store add image local-registry:5000/test/image:1.0.0
ERR ... dial tcp lookup local-registry: server misbehaving
I would expect hauler to first check if docker image exist in docker images and load locally before trying to pull from remote.
Describe Proposed Solution(s):
Hauler should first check for docker images locally, then try to pull it from remote.
We could also have a flag such as --pull-always, to have the same behavior as currently.
Describe Possible Alternatives:
I tried the following workaround, as discussed here, without success :
docker tag test local-registry:5000/test/image:1.0.0
docker save local-registry:5000/test/image:1.0.0 -o test.tar
hauler store load test.tar -s .
INF loading content from [./test.tar] to [.]
hauler store ls -s . -o json
null
Additional Context:
I'm using hauler 1.1.1
The text was updated successfully, but these errors were encountered:
Is this Feature/Enhancement related to an Existing Problem? If so, please describe:
It would be awesome to be able to to such a thing:
docker tag test local-registry:5000/test/image:1.0.0 hauler store add image local-registry:5000/test/image:1.0.0 ERR ... dial tcp lookup local-registry: server misbehaving
I would expect hauler to first check if docker image exist in
docker images
and load locally before trying to pull from remote.Describe Proposed Solution(s):
Hauler should first check for docker images locally, then try to pull it from remote.
We could also have a flag such as
--pull-always
, to have the same behavior as currently.Describe Possible Alternatives:
I tried the following workaround, as discussed here, without success :
Additional Context:
I'm using hauler 1.1.1
The text was updated successfully, but these errors were encountered: