automaatio/comfyui
ComfyUI docker image based on ComfyUI installed on Linux.
79
This image installs ComfyUI within a Docker container using the installation instructions on ComfyUI Wiki.
The dockerfile is accessible at GitHub - automaatio-dev / comfyui.
Access the web ui by going to http://localhost:8188/
.
# Docker-Compose
################################################
# Services
################################################
services:
################################################
# ComfyUI
################################################
comfyui:
image: "automaatio/comfyui:0.3.12"
container_name: "comfyui"
environment:
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TZ}
NVIDIA_VISIBLE_DEVICES: ${NVIDIA_VISIBLE_DEVICES}
CUDA_VISIBLE_DEVICES: ${CUDA_VISIBLE_DEVICES}
NVIDIA_DRIVER_CAPABILITIES: ${NVIDIA_DRIVER_CAPABILITIES}
LISTEN_ADDRESS: ${LISTEN_ADDRESS}
runtime: "nvidia"
restart: "unless-stopped"
ports:
- "8188:8188"
volumes:
- "/home/docker/comfyui/app:/comfyui/app"
- "/home/docker/comfyui/venv:/comfyui/venv"
networks:
- "comfyui"
################################################
# Networks
################################################
networks:
comfyui:
name: "comfyui"
docker pull automaatio/comfyui