-
Derived from
cu121-megapak
-
Dev kits:
-
CUDA dev kit (12.4)
-
Python dev package (3.12)
-
GCC C++ (13)
-
OpenCV-devel
-
CMake, Ninja…
-
-
Latest stable version of xFormers + PyTorch
-
Tools:
-
Vim, Fish, fd…
-
Run with Docker
mkdir -p storage
docker run -it --rm \
--name comfyui-cu124-mega \
--gpus all \
-p 8188:8188 \
-v "$(pwd)"/storage:/root \
-e CLI_ARGS="--fast" \
yanwk/comfyui-boot:cu124-megapak
Run with Podman
mkdir -p storage
podman run -it --rm \
--name comfyui-cu124-mega \
--device nvidia.com/gpu=all \
--security-opt label=disable \
-p 8188:8188 \
-v "$(pwd)"/storage:/root \
-e CLI_ARGS="--fast" \
docker.io/yanwk/comfyui-boot:cu124-megapak
The container will run the download script on the first start
and will create an empty file .download-complete
as a marker when the download is complete.
If the download does not complete, on the next start, the download script will resume downloading (using aria2’s mechanism).
You can create the .download-complete
file to skip the download script.
mkdir -p storage
touch storage/.download-complete