Skip to content

Commit

Permalink
[#32] Add dependencies graph
Browse files Browse the repository at this point in the history
  • Loading branch information
trel committed May 1, 2024
1 parent e8d8571 commit 1ce5823
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This repository provides a docker-compose project designed to easily stand up a

**DO NOT USE IN PRODUCTION.**

![irods_demo dependency graph](dependencies.png)

## Requirements

- docker
Expand Down
30 changes: 30 additions & 0 deletions dependencies.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
digraph G {

rankdir="BT"

catalog [label = "irods-catalog"];
provider [label = "irods-catalog-provider"];
http [label = "irods-client-http-api"];
icommands [label = "irods-client-icommands"];
nfsrods [label = "irods-client-nfsrods"];
nginx [label = "nginx-reverse-proxy"];
rest [label = "irods-client-rest-cpp"];
s3 [label = "irods-client-s3-api"];
zmt [label = "irods-client-zmt"];
metalnxdb [label = "metalnx-db"];
metalnx [label = "metalnx"];
minio [label = "minio"];

provider -> catalog;
icommands -> provider;
rest -> provider;
nginx -> rest;
zmt -> nginx;
metalnx -> metalnxdb;
metalnx -> provider;
http -> provider;
s3 -> provider;
nfsrods -> provider;
provider -> minio;

}
Binary file added dependencies.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1ce5823

Please sign in to comment.