automaatio/comfyui

By automaatio

Updated about 1 month ago

ComfyUI docker image based on ComfyUI installed on Linux.

Image
Data Science
Languages & Frameworks
Developer Tools

79

Overview

This image installs ComfyUI within a Docker container using the installation instructions on ComfyUI Wiki.


Dockerfile

The dockerfile is accessible at GitHub - automaatio-dev / comfyui.


Docker Compose

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 Command

docker pull automaatio/comfyui