Concepts¶
graph LR
subgraph Network
subgraph Channel
subgraph Org A
USER_A[User A]
AGENT_A[Agent A]
NODE_A[Node A]
end
subgraph Org B
USER_B[User B]
AGENT_B[Agent B]
NODE_B[Node B]
end
subgraph Org C
USER_C[User C]
AGENT_C[Agent C]
NODE_C[Node C]
end
end
end
subgraph Hyperledger Cello Server
DASHBOARD[Dashboard]
APIENGINE[API Engine]
DB[(Database)]
end
USER_A --> DASHBOARD
USER_B --> DASHBOARD
USER_C --> DASHBOARD
DASHBOARD --> APIENGINE
APIENGINE --> |Register users, organizations, and networks| DB
APIENGINE --> |Ask for node creations| AGENT_A
APIENGINE --> |Ask for node creations| AGENT_B
APIENGINE --> |Ask for node creations| AGENT_C
APIENGINE --> |Forward Blockchain operations| NODE_A
APIENGINE --> |Forward Blockchain operations| NODE_B
APIENGINE --> |Forward Blockchain operations| NODE_C
AGENT_A --> |Create via CRI| NODE_A
AGENT_B --> |Create via CRI| NODE_B
AGENT_C --> |Create via CRI| NODE_C
Server¶
Server is shared between organizations. It's used for user management and node manipulation. It will ask agents to create nodes and is responsible for every operation with them.
Components¶
Components are all the containers you need to run a Cello Server.
Dashboard¶
The Web UI of Cello.
API Engine¶
Api engine supply the core function, all operations through the api service.
Host path mappings:
- /opt/cello/api-engine/media:/var/www/media store all media files
- /var/run/docker.sock:/var/run/docker.sock Used for agent containers launch, which will deploy fabric, eg. network
- (optional) $ROOT_PATH/src/api-engine:/var/www/server When run in debug mode, MODE=dev, will mapping the source code into container, ROOT_PATH is the source code path.
Database¶
Store all the data in a postgres database, and the storage path is mapping out on the host.
Host path mappings:
- /opt/cello/postgres:/var/lib/postgresql/data Store all db data.
Agent¶
Agents run under every organization. It's used for creating nodes for the Blockchain networks.
Docker¶
Docker agent will create nodes as users request via the Docker socket.
Node¶
Nodes are what really run inside the Blockchain networks.
Hyperledger Fabric¶
For more information about the Hyperledger Fabric nodes, please check out the Hyperledger Fabric Document.

This work is licensed under a Creative Commons Attribution 4.0 International License.