Skip to content

irods/irods_docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3ab8cc7 · Mar 6, 2025
Oct 3, 2023
Mar 5, 2025
Apr 27, 2022
Oct 3, 2023
Oct 17, 2022
Aug 26, 2024
Apr 8, 2024
Apr 23, 2020
Mar 24, 2022
Feb 18, 2025
Mar 6, 2025
Oct 17, 2022

Repository files navigation

iRODS Documentation

The iRODS documentation is housed in this repository (https://github.com/irods/irods_docs).

Prerequisites

  • docker

Update for correct version

  • Update Makefile with correct GITHUB_ACCOUNT
  • Update Makefile with correct GIT_COMMITTISH
  • Update build/irods_for_doxygen/Doxyfile with correct PROJECT_NUMBER

Build

Docker will create a builder image.

$ docker build -t irods_docs_builder .

Running the docker image will save artifacts into $(pwd)/build:

$ docker run --rm -v $(pwd):/irods_docs:ro -v $(pwd)/build:/hostcomputer irods_docs_builder

You can generate documentation for a specific build of iRODS by running the following:

$ docker run --rm -v $(pwd):/irods_docs:ro -v $(pwd)/build:/hostcomputer irods_docs_builder GITHUB_ACCOUNT=<account> GIT_COMMITTISH=<branch-or-commit>

The resulting build/site directory will contain the generated standalone documentation.

View

Launch a webserver on port 8080 to show the resulting build/site directory:

$ docker run -d --rm --name irods_docs -p 8080:80 -v $(pwd)/build/site:/usr/local/apache2/htdocs/ httpd:2.4

To stop the webserver:

$ docker stop irods_docs