22 lines
569 B
YAML
22 lines
569 B
YAML
services:
|
|
comfyui-service:
|
|
image: comfyui-image:v1.2
|
|
container_name: comfyui
|
|
ports:
|
|
- 8188:8188
|
|
ipc: host
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 64000M
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: 1
|
|
capabilities: [ gpu ]
|
|
volumes:
|
|
#- ./custom_nodes:/app/ComfyUI/custom_nodes
|
|
- E://models:/root/comfy/ComfyUI/models
|
|
- E://comfy//ComfyUI//input:/root/comfy/ComfyUI/input
|
|
# - s3:/app/ComfyUI/input_s3
|
|
#- s3:/app/ComfyUI/output_s3 |