> For the complete documentation index, see [llms.txt](https://help.aikido.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.aikido.dev/docs/docs-ja/wkufurtogaido/additional-cloud-providers/scanning-fly-with-aikido.md).

# Aikido で Fly.io をスキャン

Aikido は、特定の統合を通じて Fly 上のワークロードを保護することを完全にサポートしています。ネイティブ統合が将来的に追加される可能性はありますが、次を組み合わせることで、すでに完全なカバレッジを実現できます:<br>

* [コードスキャン](/docs/docs-ja/kdosukyan/code-scanning-overview.md) アプリケーションコード、依存関係、Dockerfile 向け
* [ローカルスキャナー](/docs/docs-ja/kdosukyan/local-code-scanning.md) Fly のコンテナイメージ向け

## 機能

### コンテナイメージのスキャン

Fly のレジストリは、保存されているすべてのイメージ/タグを一覧表示することをサポートしていません。Fly は、リリースによって参照されたイメージのみを公開するため、API を通じてレジストリ全体の内容を列挙することはできません。

回避策として、現在デプロイ済み（実行中）のイメージを、そのイメージ参照を取得し、ローカルに pull して、毎日次の [Aikido Local Scanner](/docs/docs-ja/kdosukyan/local-code-scanning.md).

```bash
export AIKIDO_API_KEY="AIK_CI_..."
fly releases --image \
  | awk 'NR > 1 && $2 == "running" { print $NF }' \
  | sort -u \
  | xargs -r -I {} sh -c 'docker pull "{}" && aikido-local-scanner image-scan --apikey "$AIKIDO_API_KEY" --force-create-image-for-tag "{}"'
```

上記は、Fly.io 上の各アプリケーションごとに実行する必要があります


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.aikido.dev/docs/docs-ja/wkufurtogaido/additional-cloud-providers/scanning-fly-with-aikido.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
