mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-12-16 01:37:04 +08:00
- Add Dockerfile with CUDA 12.6 and Python 3.12 base - Add docker-compose.yml with GPU support and volume mounts - Add docker-entrypoint.sh script with venv management and OTEL support - Add comfy-node-install.sh helper for custom node installation - Update .gitignore to exclude Docker-related artifacts - Entrypoint ensures frontend package matches requirements.txt version - Optional OTEL instrumentation when OTEL_EXPORTER_OTLP_ENDPOINT is set - Volume-mounted repo allows git checkout of release tags without rebuilds
13 lines
267 B
Plaintext
13 lines
267 B
Plaintext
# Example override file to disable GPU for testing
|
|
# Copy this to docker-compose.override.yml to use CPU-only mode
|
|
services:
|
|
comfyui:
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices: []
|
|
# Remove ipc: host if not using GPU
|
|
# ipc: host
|
|
|
|
|