Skip to content

Image Dependency Graph

This is a Directed Acyclic Graph (DAG) showing the images and their dependency relations. The outer boxes represent the images, and their inner boxes represent the software that is built/installed by container-forge.

We do not list the packages which are installed from the underlying Linux distribution's package manager, so if nothing else is built/installed in an image, it will say "no builds".

See the Image Specification for more information.

Dependencies between the packages are shown below this diagram.

flowchart LR
    subgraph base
        direction LR
        rcdb_base[rcdb]
        ccdb_base[ccdb]
        qadb_base[qadb]
        hipo_base[hipo]
    end
    subgraph base_root
        direction LR
        root_base_root[root]
        hipo_base_root[hipo]
    end
    subgraph recon
        direction LR
        clas12-config_recon[clas12-config]
        clara_recon[clara]
        coatjava_recon[coatjava]
        denoise_recon[denoise]
        asprof_recon[asprof]
    end
    subgraph analysis
        direction LR
        iguana_analysis[iguana]
        clas12root_analysis[clas12root]
        clas12-mcgen_analysis[clas12-mcgen]
    end
    base --> base_root
    base --> recon
    base_root --> analysis

Package Dependency Graph

This DAG shows software packages and their dependency relations. Dependencies are obtained from the image specification YAML; not all dependency relations are specified, in order to reduce diagram clutter. Upstream packages with no listed dependents are also not drawn.

flowchart LR
    subgraph base
        direction LR
        mariadb_base[mariadb]
        sqlite_base[sqlite]
        rcdb_base[rcdb]
        ccdb_base[ccdb]
        qadb_base[qadb]
        hipo_base[hipo]
    end
    subgraph base_root
        direction LR
        root_base_root[root]
        hipo_base_root[hipo]
    end
    subgraph recon
        direction LR
        clas12-config_recon[clas12-config]
        clara_recon[clara]
        coatjava_recon[coatjava]
        denoise_recon[denoise]
        asprof_recon[asprof]
    end
    subgraph analysis
        direction LR
        fmt_analysis[fmt]
        yaml-cpp_analysis[yaml-cpp]
        iguana_analysis[iguana]
        clas12root_analysis[clas12root]
        clas12-mcgen_analysis[clas12-mcgen]
    end
    mariadb_base --> rcdb_base
    mariadb_base --> ccdb_base
    sqlite_base --> rcdb_base
    sqlite_base --> ccdb_base
    rcdb_base --> coatjava_recon
    rcdb_base --> iguana_analysis
    rcdb_base --> clas12root_analysis
    ccdb_base --> coatjava_recon
    ccdb_base --> clas12root_analysis
    qadb_base --> clas12root_analysis
    hipo_base --> denoise_recon
    root_base_root --> iguana_analysis
    root_base_root --> clas12root_analysis
    root_base_root --> hipo_base
    root_base_root --> hipo_base_root
    hipo_base_root --> iguana_analysis
    hipo_base_root --> clas12root_analysis
    clas12-config_recon --> coatjava_recon
    clara_recon --> coatjava_recon
    fmt_analysis --> iguana_analysis
    yaml-cpp_analysis --> iguana_analysis
    iguana_analysis --> clas12root_analysis