From 0f3071cd9221a9bea23b3f96a73f6ec8287b7a1b Mon Sep 17 00:00:00 2001 From: "B. Bergeron" Date: Tue, 9 Sep 2025 23:07:37 -0400 Subject: [PATCH] Improved documentation --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6cc319348..76e08f8a1 100644 --- a/README.md +++ b/README.md @@ -327,20 +327,24 @@ For models compatible with Iluvatar Extension for PyTorch. Here's a step-by-step ## Running with Docker -Start by installing Docker and Docker Compose on your host. Next, edit -`compose.yaml` and update the `UID` and `GID` variables to match your -user. Additional fields are documented in the file for further customization. +Start by installing Docker, Docker Compose, and the NVIDIA Container Toolkit on +your host. Next, edit `compose.yaml` and update the `UID` and `GID` variables to +match your user. Additional fields are documented in the file for further +customization. Once ready, build and run the image locally: -``` +```shell +# (Re)build the Docker image. Run this before the first start, after updating +# ComfyUI, or after changing any build arguments in `compose.yaml`. docker compose build +# Start ComfyUI. This reuses the most recently built image. docker compose up ``` To stop and remove the container along with its volumes, run: -``` +```shell docker compose down -v ```