From 87b73d7322b4e3d980d29c7dc8f82c6d77de557e Mon Sep 17 00:00:00 2001 From: clsferguson <48876201+clsferguson@users.noreply.github.com> Date: Wed, 17 Sep 2025 10:25:54 -0600 Subject: [PATCH] Update README.md --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index 903da9166..d2a0d81ec 100644 --- a/README.md +++ b/README.md @@ -26,13 +26,11 @@ This repository automates the creation of Docker images for [ComfyUI](https://gi I created this repo for myself as a simple way to stay up to date with the latest ComfyUI versions while having an easy-to-use Docker image. It's particularly suited for setups with **NVIDIA GPUs**, leveraging CUDA for accelerated performance. -Why Docker? It provides a consistent, isolated environment that's easy to deploy, update, and scale, perfect for AI workflows without messing with your host system. - ### Built With - [Docker](https://www.docker.com/) - [GitHub Actions](https://github.com/features/actions) for automation - [PyTorch](https://pytorch.org/) with CUDA support -- Based on Python 3.13 slim image +- Based on Python 3.12 slim image --- @@ -41,8 +39,6 @@ Why Docker? It provides a consistent, isolated environment that's easy to deploy - **NVIDIA GPU Ready**: Pre-configured with CUDA-enabled PyTorch for seamless GPU acceleration. - **Non-Root Runtime**: Runs as a non-root user for better security. - **Pre-Installed Manager**: Includes ComfyUI-Manager for easy node/extensions management. -- **Lightweight**: Uses a slim Python base image to keep the size down. -- **Customizable**: Pass environment varibles with `COMFYUI_` in docker-compose. --- @@ -81,7 +77,6 @@ services: - TZ=America/Edmonton - PUID=1000 - GUID=1000 - #- COMFYUI_SOME_ENV_VAR=SOME_VALUE deploy: resources: reservations: @@ -108,7 +103,6 @@ Access ComfyUI at `http://localhost:8188` after starting the container using Doc ### Environment Variables - Set via `.env` file or `-e` flags in `docker compose` or `docker run`. -- Examples: `COMFYUI_EXTRA_ARGS="--highvram"` to pass extra args. ---