Sign inSign up

automaatio/comfyui

By automaatio

Updated about 1 year ago

ComfyUI docker image based on ComfyUI installed on Linux.

Image
Languages & frameworks
Developer tools
Data science
0

1.1K

automaatio/comfyui repository overview

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"

Tag summary

Content type

Image

Digest

sha256:0c4318f26

Size

92.5 MB

Last updated

about 1 year ago

docker pull automaatio/comfyui