question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

doesn't work with image "devopsqa/fortify"

See original GitHub issue
docker pull laniksj/dfimage
alias dfimage="docker run -v /var/run/docker.sock:/var/run/docker.sock --rm laniksj/dfimage"
docker pull devopsqa/fortify

dfimage devopsqa/fortify
Traceback (most recent call last):
  File "/root/entrypoint.py", line 56, in <module>
    __main__ = MainObj()
  File "/root/entrypoint.py", line 16, in __init__
    self._get_image(argv[-1])
  File "/root/entrypoint.py", line 32, in _get_image
    raise ImageNotFound("Image {} not found\n".format(img_hash))
__main__.ImageNotFound: Image devopsqa/fortify not found

I am looking for a image to run with fortify, and find it in hub.docker.com. I 'd like to reverse its Dockerfile. this image devopsqa/fortify is huge,

docker images devopsqa/fortify
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
devopsqa/fortify    latest              9db34bb78a6e        2 years ago         3.04GB

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
LanikSJcommented, Jun 25, 2020

You’re using the image name vs image ID:

→ docker pull devopsqa/fortify
Using default tag: latest
latest: Pulling from devopsqa/fortify
7448db3b31eb: Pull complete
c36604fa7939: Pull complete
29e8ef0e3340: Pull complete
....
67d289a96d91: Pull complete
Digest: sha256:8a4683998bf9a7aebf59a93b1a9c4598af3d34ae661186d1143664fc49f7ce11
Status: Downloaded newer image for devopsqa/fortify:latest
docker.io/devopsqa/fortify:latest

→ docker images -a
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
devopsqa/fortify    latest              9db34bb78a6e        2 years ago         3.04GB

→ dfimage 9db34bb78a6e
Unable to find image 'laniksj/dfimage:latest' locally
latest: Pulling from laniksj/dfimage
df20fa9351a1: Pull complete
f8d8b40b5aa5: Pull complete
f63d9ebd731c: Pull complete
Digest: sha256:61c4d63202d6da641f48293bb5d1b4bf55a917c865578b65764314e2390a8191
Status: Downloaded newer image for laniksj/dfimage:latest
FROM devopsqa/fortify:latest
ADD file:89ecb642d662ee7edbb868340551106d51336c7e589fdaca4111725ec64da957 in /
CMD ["/bin/bash"]
....

Above works no problem.

0reactions
ozbillwangcommented, Jun 25, 2020

Sure, let me take a look when have time to improve it.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Azure DevOps - Fortify Integrations - Micro Focus
Use the Fortify Azure DevOps build tasks in your continuous integration builds to identify security issues in your source code. Build tasks include:....
Read more >
Fortify CI Integrations Part 2 (Jenkins, Azure DevOps) - YouTube
Fortify can integrate with virtually any CI/CD tool in the market. In this session, Diogo Rispoli ( Fortify Master Solutions Architect), ...
Read more >
Fortify Docker image security with these 5 tips | TechTarget
2. Opt for multistage builds. It's often optimal to run one image in testing and another in production. Tested images don't need compilers,...
Read more >
Error authenticating with Fortify on Demand. Error
I am trying to do automate build with fortify on demand extension ... Run Fortify on Demand static assessment on Devops - IISDeploy.sln....
Read more >
Troubleshoot pipeline runs - Azure DevOps - Microsoft Learn
In this article. Pipeline won't trigger; Pipeline queues but never gets an agent; Pipeline fails to complete; Get logs to diagnose problems; I ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found