Skip to content

Instantly share code, notes, and snippets.

@nefudev
nefudev / docker-compose.yml
Last active October 16, 2025 10:49
ComfyUI in Docker(Ubuntu22.04.5LTS_python3.11.12_torch2.7.0+cu128_triton3.3.0)
services:
app:
container_name: comfyui
image: pytorch/pytorch:2.7.0-cuda12.8-cudnn9-runtime
volumes:
- ./ComfyUI:/workspace/ComfyUI
- ./models:/workspace/models:ro # <my_models_dir>:<container dir>
- ./output:/workspace/output # <my_output_dir>:<container dir>
# - ./resource:/workspace/resource:ro # Enable if other resources exist
working_dir: /workspace
@nefudev
nefudev / docker-compose.yml
Last active October 16, 2025 10:51
Create SageAttention2 wheel(Ubuntu22.04.5LTS_python3.11.12_torch2.7.0+cu128_triton3.3.0)
services:
app:
container_name: sage_attention
image: pytorch/pytorch:2.7.0-cuda12.8-cudnn9-devel
volumes:
- ./workspace:/workspace
working_dir: /workspace
runtime: nvidia
environment:
- NVIDIA_VISIBLE_DEVICES=all