Luke

Results 10 comments of Luke

Hello, is there any update on this issue? From my limited understanding of the issue the problem seems to be in: https://github.com/jgsqware/clairctl/blob/f7d6e75179436490ca2c2eebff5010a37cb2fecd/docker/dockercli/dockercli.go#L74-L75 It should save the image like this: `${tempdir}/docker.io/library/ubuntu/`...

You remove the dots which should still be there and you append the tag which is not needed. Image is saved in `${tempdir}/docker_io/library/ubuntu/14_04/blobs/`, but is expected in `http://127.0.0.1:40769/local/docker.io/library/ubuntu/blobs/`. I edited...

This pull request fixes the issue you are encountering: https://github.com/jgsqware/clairctl/pull/112 It is basically the same issue already documented in https://github.com/jgsqware/clairctl/issues/110

Hey, For some weird reason you have to copy my source in the original directory because some paths are hardcoded somewhere. Currently I only have access to my phone else...

Yes I didn't have time to debug the issue so it currently is as is. Am 21.03.2018 09:05 schrieb dawaj71 : Thanks for your time. I don't understand the you...

I always have my images tagged with the full name (registry/namespace/name:tag) - it might not work if you only have set a name for your image... I also always have...

Did you push your image before you triggered the analyze? `clairctl push -l ${container}`

The issue is resolved in https://github.com/jgsqware/clairctl/pull/112 It is related to a false temp save path for the blobs As a current workaround you need to compile your own binary or...

I just encountered the same issue. If you have the invalid format type in the openapi spec, the api call is not working and returns a 404. This is because...

I reproduced this issue in a small example application. https://github.com/lukeb2e/rocket-openapi-format-swaggergen-bug Even though the endpoint is configured to `#[put("/", data = "", format = "text/plain")]` the swagger only shows formatting for...