This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |