@@ -205,6 +205,21 @@ Also, A new GitHub action is available at
205205`scancode-action repository <https://github.com/nexB/scancode-action >`_
206206to run ScanCode.io pipelines from your GitHub Workflows.
207207
208+ How can I get notified about my project progression?
209+ -----------------------------------------------------
210+
211+ You can monitor your project's progress in multiple ways:
212+
213+ - **User Interface: ** The project details page provides real-time updates on pipeline
214+ execution.
215+ - **REST API: ** Use the API to programmatically check the status of your projects.
216+ - **CLI Monitoring: ** The ``scanpipe list-projects `` command provides an overview of
217+ project states.
218+ - **Webhook Integration: ** You can set up webhooks to receive updates in your preferred
219+ notification system. For more details, refer to the :ref: `webhooks ` section.
220+ - **Slack notifications: ** Get project updates directly in Slack by configuring an
221+ incoming webhook. See :ref: `webhooks_slack_notifications ` for setup instructions.
222+
208223.. _faq_tag_input_files :
209224
210225How to tag input files?
@@ -307,6 +322,39 @@ data older than 7 days::
307322 command.
308323
309324How can I provide my license policies?
310- ---------------------------------------
325+ --------------------------------------
311326
312327For detailed information about the policies system, refer to :ref: `policies `.
328+
329+ Can you analyze Dockerfiles?
330+ ----------------------------
331+
332+ We have code in https://github.com/aboutcode-org/container-inspector/blob/main/src/container_inspector/dockerfile.py
333+ for this ... but this may not be wired in other tools at the moment.
334+ It can for instance map dockerfile instructions to actual docker image history,
335+ https://github.com/aboutcode-org/container-inspector/blob/main/src/container_inspector/dockerfile.py#L204
336+
337+ Can you analyze a built image? (Build Docker Image Analysis)
338+ ------------------------------------------------------------
339+
340+ Yes, we do this in ScanCode.io. We have one fairly unique feature to actually account
341+ for all files used in all layers.
342+
343+ Can you analyze all layers of a running container?
344+ --------------------------------------------------
345+
346+ ScanCode.io scans all layers of images. We can scan all layers of a running container
347+ if you save the running container as an image first.
348+ We can also fetch images from registries, local files and technically also from a
349+ running container, say in a local docker ... but this has not yet been tested so far.
350+ We do not introspect k8s clusters to analyze the deployed and running images
351+ there (yet) and that would be a nice future addition.
352+ For now we can instead work on the many images there, save and analyze them.
353+
354+ Can you analyze Docker in Docker?
355+ ---------------------------------
356+
357+ The input to ScanCode is a local saved image: Docker or OCI.
358+ Docker in Docker support will demand to have access to the saved images
359+ (either extracted from the Docker images in Docker, or mounted in a volume or saved
360+ from the Docker in the Docker image). Once saved we can analyze these alright.
0 commit comments