From 9e955fb58f1e836ec8930c44bd6f61f89bba3dca Mon Sep 17 00:00:00 2001 From: lin-bot23 Date: Fri, 10 Jul 2026 06:35:12 +0800 Subject: [PATCH] docs: add Docker FAQ to troubleshooting overview page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Based on Mintlify AI analytics data showing users repeatedly ask about Docker (appeared across Jul 4-5, multiple languages). The existing Docker notice was only on the manual install page, making it invisible to users asking from other pages. - EN: troubleshooting/overview.mdx — add Frequently Asked Questions section with Docker FAQ - ZH/JA/KO: sync translations --- ja/troubleshooting/overview.mdx | 8 ++++ .../partner-nodes/ideogram/ideogram-v3.mdx | 42 +++++++++++++++++++ ko/troubleshooting/overview.mdx | 8 ++++ .../partner-nodes/ideogram/ideogram-v3.mdx | 42 +++++++++++++++++++ troubleshooting/overview.mdx | 8 ++++ zh/troubleshooting/overview.mdx | 8 ++++ .../partner-nodes/ideogram/ideogram-v3.mdx | 42 +++++++++++++++++++ 7 files changed, 158 insertions(+) create mode 100644 ja/tutorials/partner-nodes/ideogram/ideogram-v3.mdx create mode 100644 ko/tutorials/partner-nodes/ideogram/ideogram-v3.mdx create mode 100644 zh/tutorials/partner-nodes/ideogram/ideogram-v3.mdx diff --git a/ja/troubleshooting/overview.mdx b/ja/troubleshooting/overview.mdx index 743d95782..3f3895ae1 100644 --- a/ja/troubleshooting/overview.mdx +++ b/ja/troubleshooting/overview.mdx @@ -366,6 +366,14 @@ conda install libuv pip install torch==2.3.1.post0+cxx11.abi torchvision==0.18.1.post0+cxx11.abi torchaudio==2.3.1.post0+cxx11.abi intel-extension-for-pytorch==2.3.110.post0+xpu --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/ ``` +## よくある質問 + +### Docker で ComfyUI を実行するにはどうすればよいですか? + +ComfyUI は公式の Docker イメージを提供していません。コンテナで ComfyUI を実行したい場合は、[Docker Hub](https://hub.docker.com) でコミュニティ管理のイメージ(例:`lecode-official/comfyui-docker`)を検索してください。**これらは公式の ComfyUI イメージではなく**、ComfyUI チームはサポートしていません。自己責任で使用してください。 + +ローカルインストールの場合は、[手動インストールガイド](/ja/installation/manual_install) を参照してください。クラウド利用の場合は、[Comfy Cloud](/ja/get_started/cloud) をご覧ください。 + ## ヘルプの入手とバグの報告 ### バグを報告する前に diff --git a/ja/tutorials/partner-nodes/ideogram/ideogram-v3.mdx b/ja/tutorials/partner-nodes/ideogram/ideogram-v3.mdx new file mode 100644 index 000000000..de25f6ab2 --- /dev/null +++ b/ja/tutorials/partner-nodes/ideogram/ideogram-v3.mdx @@ -0,0 +1,42 @@ +--- +title: "ComfyUI Ideogram 3.0 パートナーノード公式例" +description: "このガイドでは、ComfyUIでIdeogram 3.0パートナーノードを使用する方法について説明します。" +sidebarTitle: "Ideogram 3.0" +translationSourceHash: 13e120c5 +translationFrom: tutorials/partner-nodes/ideogram/ideogram-v3.mdx +--- + +import ReqHint from "/snippets/ja/tutorials/partner-nodes/req-hint.mdx"; +import UpdateReminder from "/snippets/ja/tutorials/update-reminder.mdx"; + +Ideogram 3.0は、Ideogramによる強力なテキストから画像へのモデルであり、フォトリアリスティックな品質、正確なテキストレンダリング、一貫したスタイルコントロールで知られています。 + +Ideogram V3ノードは現在、次の2つのモードをサポートしています: +- テキストから画像へのモード +- 画像編集モード(画像とマスクの両方の入力が提供された場合) + + + + +## Ideogram 3.0 パートナーノード テキストから画像へのモード + +画像とマスクの入力を使用せずにIdeogram V3を使用する場合、ノードはテキストから画像へのモードで動作します。 + +### 1. ワークフローファイルのダウンロード + +以下のファイルをダウンロードしてComfyUIにドラッグし、ワークフローを読み込みます: + +![Ideogram 3.0 ComfyUI ワークフロー](https://raw.githubusercontent.com/Comfy-Org/example_workflows/main/api_nodes/ideogram/v3/ideogram_v3_t2i.png) + +### 2. ワークフローのステップを実行 + +![Ideogram 3.0 ワークフローステップ](/images/tutorial/api_nodes/ideogram/ideogram_v3_t2i.jpg) + +番号付きのステップに従って基本的なワークフローを完了します: +1. `Ideogram V3`ノードの`prompt`フィールドに画像の説明を入力します +2. `Run`をクリックするか、ショートカット`Ctrl(cmd) + Enter`を使用して画像を生成します +3. APIが結果を返した後、`Save Image`ノードで生成済み画像を表示します。画像は`ComfyUI/output/`ディレクトリに保存されます。 + +## Ideogram 3.0 パートナーノード 画像編集モード + +更新予定 \ No newline at end of file diff --git a/ko/troubleshooting/overview.mdx b/ko/troubleshooting/overview.mdx index 02e52706a..0d87b724f 100644 --- a/ko/troubleshooting/overview.mdx +++ b/ko/troubleshooting/overview.mdx @@ -366,6 +366,14 @@ conda install libuv pip install torch==2.3.1.post0+cxx11.abi torchvision==0.18.1.post0+cxx11.abi torchaudio==2.3.1.post0+cxx11.abi intel-extension-for-pytorch==2.3.110.post0+xpu --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/ ``` +## 자주 묻는 질문 + +### Docker로 ComfyUI를 실행하려면 어떻게 해야 하나요? + +ComfyUI는 공식 Docker 이미지를 제공하지 않습니다. 컨테이너에서 ComfyUI를 실행하려면 [Docker Hub](https://hub.docker.com)에서 커뮤니티 유지 관리 이미지(예: `lecode-official/comfyui-docker`)를 검색하세요. **이것들은 공식 ComfyUI 이미지가 아니며**, ComfyUI 팀에서 지원하지 않습니다. 사용에 따른 책임은 본인에게 있습니다. + +로컬 설치는 [수동 설치 가이드](/ko/installation/manual_install)를 따르세요. 클라우드 사용은 [Comfy Cloud](/ko/get_started/cloud)를 참조하세요. + ## 도움 요청 및 버그 보고 ### 버그 보고 전 diff --git a/ko/tutorials/partner-nodes/ideogram/ideogram-v3.mdx b/ko/tutorials/partner-nodes/ideogram/ideogram-v3.mdx new file mode 100644 index 000000000..2d663183c --- /dev/null +++ b/ko/tutorials/partner-nodes/ideogram/ideogram-v3.mdx @@ -0,0 +1,42 @@ +--- +title: "ComfyUI Ideogram 3.0 파트너 노드 공식 예제" +description: "이 가이드에서는 ComfyUI에서 Ideogram 3.0 파트너 노드를 사용하는 방법을 설명합니다." +sidebarTitle: "Ideogram 3.0" +translationSourceHash: 13e120c5 +translationFrom: tutorials/partner-nodes/ideogram/ideogram-v3.mdx +--- + +import ReqHint from "/snippets/ko/tutorials/partner-nodes/req-hint.mdx"; +import UpdateReminder from "/snippets/ko/tutorials/update-reminder.mdx"; + +Ideogram 3.0은 Ideogram의 강력한 텍스트 기반 이미지 생성 모델로, 사실적인 품질, 정확한 텍스트 렌더링 및 일관된 스타일 제어로 잘 알려져 있습니다. + +Ideogram V3 노드는 현재 두 가지 모드를 지원합니다: +- 텍스트 기반 이미지 생성 모드 +- 이미지 편집 모드(이미지와 마스크 입력이 모두 제공될 때) + + + + +## Ideogram 3.0 파트너 노드 텍스트 기반 이미지 생성 모드 + +이미지와 마스크 입력 없이 Ideogram V3를 사용할 경우, 노드는 텍스트 기반 이미지 생성 모드로 작동합니다. + +### 1. 워크플로 파일 다운로드 + +다음 파일을 다운로드하여 ComfyUI로 끌어다 놓으면 워크플로가 로드됩니다: + +![Ideogram 3.0 ComfyUI 워크플로](https://raw.githubusercontent.com/Comfy-Org/example_workflows/main/api_nodes/ideogram/v3/ideogram_v3_t2i.png) + +### 2. 워크플로 단계 완료 + +![Ideogram 3.0 워크플로 단계](/images/tutorial/api_nodes/ideogram/ideogram_v3_t2i.jpg) + +번호가 매겨진 단계에 따라 기본 워크플로를 완료하세요: +1. `Ideogram V3` 노드의 `prompt` 필드에 이미지 설명을 입력합니다. +2. `실행`을 클릭하거나 단축키 `Ctrl(Cmd) + Enter`를 눌러 이미지를 생성합니다. +3. API가 결과를 반환한 후, `이미지 저장` 노드에서 생성된 이미지를 확인합니다. 이미지는 `ComfyUI/output/` 디렉토리에 저장됩니다. + +## Ideogram 3.0 파트너 노드 이미지 편집 모드 + +[업데이트 예정] \ No newline at end of file diff --git a/troubleshooting/overview.mdx b/troubleshooting/overview.mdx index 62b3e7952..59c35c075 100644 --- a/troubleshooting/overview.mdx +++ b/troubleshooting/overview.mdx @@ -354,6 +354,14 @@ conda install libuv pip install torch==2.3.1.post0+cxx11.abi torchvision==0.18.1.post0+cxx11.abi torchaudio==2.3.1.post0+cxx11.abi intel-extension-for-pytorch==2.3.110.post0+xpu --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/ ``` +## Frequently Asked Questions + +### How do I run ComfyUI with Docker? + +ComfyUI does not provide an official Docker image. If you want to run ComfyUI in a container, search [Docker Hub](https://hub.docker.com) for community-maintained images (e.g., `lecode-official/comfyui-docker`). Note that **none of these are official ComfyUI images**, and they are not supported by the ComfyUI team. Use them at your own risk. + +For local installation on Linux, follow the [Manual Installation Guide](/installation/manual_install). For cloud usage, see [Comfy Cloud](/get_started/cloud). + ## Getting Help & Reporting Bugs ### Before Reporting a Bug diff --git a/zh/troubleshooting/overview.mdx b/zh/troubleshooting/overview.mdx index c3e0c6507..e907febb7 100644 --- a/zh/troubleshooting/overview.mdx +++ b/zh/troubleshooting/overview.mdx @@ -366,6 +366,14 @@ conda install libuv pip install torch==2.3.1.post0+cxx11.abi torchvision==0.18.1.post0+cxx11.abi torchaudio==2.3.1.post0+cxx11.abi intel-extension-for-pytorch==2.3.110.post0+xpu --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/ ``` +## 常见问题 + +### 如何使用 Docker 运行 ComfyUI? + +ComfyUI 不提供官方 Docker 镜像。如果你想在容器中运行 ComfyUI,请在 [Docker Hub](https://hub.docker.com) 搜索社区维护的镜像(例如 `lecode-official/comfyui-docker`)。请注意,**这些都不是官方 ComfyUI 镜像**,ComfyUI 团队对此不提供支持。请自行承担使用风险。 + +如需在本地安装 ComfyUI,请遵循[手动安装指南](/zh/installation/manual_install)。如需使用云服务,请参见 [Comfy Cloud](/zh/get_started/cloud)。 + ## 获取帮助和报告错误 ### 报告错误之前 diff --git a/zh/tutorials/partner-nodes/ideogram/ideogram-v3.mdx b/zh/tutorials/partner-nodes/ideogram/ideogram-v3.mdx new file mode 100644 index 000000000..2eb935762 --- /dev/null +++ b/zh/tutorials/partner-nodes/ideogram/ideogram-v3.mdx @@ -0,0 +1,42 @@ +--- +title: "ComfyUI Ideogram 3.0 合作节点官方示例" +description: "本指南介绍如何在ComfyUI中使用Ideogram 3.0合作节点" +sidebarTitle: "Ideogram 3.0" +translationSourceHash: 13e120c5 +translationFrom: tutorials/partner-nodes/ideogram/ideogram-v3.mdx +--- + +import ReqHint from "/snippets/zh/tutorials/partner-nodes/req-hint.mdx"; +import UpdateReminder from "/snippets/zh/tutorials/update-reminder.mdx"; + +Ideogram 3.0 是由 Ideogram 开发的强大文生图模型,以其逼真的画质、准确的文字渲染和稳定的风格控制而闻名。 + +Ideogram V3 节点目前支持两种模式: +- 文生图模式 +- 图像编辑模式(当同时提供图像和遮罩输入时) + + + + +## Ideogram 3.0 合作节点文生图模式 + +当使用 Ideogram V3 而不提供图像和遮罩输入时,节点将运行在文生图模式。 + +### 1. 下载工作流文件 + +下载以下文件并将其拖入 ComfyUI 以加载工作流: + +![Ideogram 3.0 ComfyUI 工作流](https://raw.githubusercontent.com/Comfy-Org/example_workflows/main/api_nodes/ideogram/v3/ideogram_v3_t2i.png) + +### 2. 完成工作流步骤 + +![Ideogram 3.0 工作流步骤](/images/tutorial/api_nodes/ideogram/ideogram_v3_t2i.jpg) + +按照编号步骤完成基本工作流: +1. 在 `Ideogram V3` 节点的 `prompt` 字段中输入图像描述 +2. 点击 `Run` 或使用快捷键 `Ctrl(cmd) + Enter` 生成图像 +3. 在 API 返回结果之后,在 `保存图像` 节点中查看已生成的图像。图像将保存到 `ComfyUI/output/` 目录 + +## Ideogram 3.0 合作节点图像编辑模式 + +[待更新] \ No newline at end of file