24 lines
501 B
YAML
24 lines
501 B
YAML
services:
|
|
comfyui:
|
|
container_name: comfyui
|
|
image: ghcr.io/ai-dock/comfyui:latest-cuda
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8188:8188
|
|
environment:
|
|
- COMFYUI_ARGS=
|
|
- AUTO_UPDATE=false
|
|
- TZ=America/New_York
|
|
# Optional - for gated models
|
|
# - HF_TOKEN=your_token
|
|
# - CIVITAI_TOKEN=your_token
|
|
volumes:
|
|
- /srv/comfyui/workspace:/workspace
|
|
runtime: nvidia
|
|
networks:
|
|
- npm-network
|
|
|
|
networks:
|
|
npm-network:
|
|
external: true
|