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.
- 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.
To build the base image, run the following command:
docker build -t livepeer/comfyui-base -f docker/Dockerfile.base .To build the main image, run the following command:
docker build -t livepeer/comfystream -f docker/Dockerfile .To start the container in interactive mode, run the following command:
docker run -it --gpus all livepeer/comfystreamTo start the Comfystream server, run the following command:
docker run --gpus all livepeer/comfystream --serverThere 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