Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 850 Bytes

File metadata and controls

44 lines (29 loc) · 850 Bytes

README » Alternative Setup

Alternative Setup Methods for Iris

This document describes alternative ways to set up and run Iris, including manual Docker setup and Apptainer. Use these methods if Docker Compose is not suitable for your workflow.


Manual Docker Setup

If you prefer to build and run Docker containers manually:

# Build the Docker image
./docker/build.sh <image-name>

# Run the container
./docker/run.sh <image-name>

# Install Iris in development mode
pip install -e .

Apptainer

If you prefer to use Apptainer:

# Build the Apptainer image
./apptainer/build.sh

# Run the container
./apptainer/run.sh

# Install Iris in development mode
pip install -e .