Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

ComfyStream Docker

This folder contains the Docker files that can be used to run ComfyStream in a containerized fashion or to work on the codebase within a dev container. This README contains the general usage instructions while the Devcontainer Readme contains instructions on how to use Comfystream inside a dev container and get quickly started with your development journey.

Containers

  • Dockerfile - The main Dockerfile that can be used to run ComfyStream in a containerized fashion.
  • Dockerfile.base - The base Dockerfile that can be used to build the base image for ComfyStream.

Pre-requisites

Usage

Build the Base Image

To build the base image, run the following command:

docker build -t livepeer/comfyui-base -f docker/Dockerfile.base .

Build the Main Image

To build the main image, run the following command:

docker build -t livepeer/comfystream -f docker/Dockerfile .

Run the Container

To start the container in interactive mode, run the following command:

docker run -it --gpus all livepeer/comfystream

To start the Comfystream server, run the following command:

docker run --gpus all livepeer/comfystream --server

There are multiple options that can be passed to the Comfystream server. To see the list of available options, run the following command:

docker run --gpus all livepeer/comfystream --help