I have set up VON network on my device and currently trying to set up Permitify on Windows 10. After using ./mange build it will shows error like this:
failed to solve with frontend dockerfile.v0: failed to create LLB definition: docker.io/bcgovimages/von-image:py36-indy1.3.1-dev-441-ew-s2i: not found
using docker version 20.10.12
Any help is appreciated
2
Answers
There is no tag on the
bcgovimages/von-image
image calledpy36-indy1.3.1-dev-441-ew-s2i
on docker hub. It might have been removed and replaced with a newer one. I quickly tried finding one that looked like your tag, but didn’t have any luck.I’d try using
bcgovimages/von-image:py36-1.16-1
since that’s the newest one that starts withpy36
.You can check what tags are available here: https://hub.docker.com/r/bcgovimages/von-image/tags?page=1
I had the same error message after migrating from Docker Desktop to colima. My docker build was failing:
The error message I was receiving is similar to that received by the OC (wpj).
So I solved the problem by downloading the image again:
Even though the image was already local to my colima instance, there may have been a reference to Docker desktop meta-data that was causing the failure. The subsequent pull resulted in this being corrected.
A little bit more insight – my build was working well with colima until I delete Docker Desktop. Apparently, there was a metadata dependency that I was unaware of (but now can correct).