Manage ArchR dependencies using Docker
masterArchR provides pre-compiled Docker images based on rocker/rstudio that include ArchR and all necessary dependencies.
To run an interactive RStudio instance:
- Pull the
greenleaflab/archr:latestimage. - Run the container, mapping your local workspace to
/workspaceand exposing port8787. - Access RStudio via
localhost:<your_port_of_interest>.
To run an interactive bash console instead of RStudio, replace the command with bash.
# Pull the latest image
docker image pull greenleaflab/archr:latest
# Run RStudio container
docker run -it --rm -v <your_workspace>:/workspace -p <your_port_of_interest>:8787
# Run interactive bash console instead
docker run -it --rm -v <your_workspace>:/workspace -p <your_port_of_interest>:8787 bash