first release v0.1
This commit is contained in:
35
docs/uml/docker.pu
Normal file
35
docs/uml/docker.pu
Normal file
@@ -0,0 +1,35 @@
|
||||
@startuml
|
||||
|
||||
title: Dockerisation mdm_to_neo4j
|
||||
header version: 19.03.2024
|
||||
|
||||
skinparam shadowing false
|
||||
skinparam node {
|
||||
backgroundColor<<Docker>> #ccccff
|
||||
}
|
||||
|
||||
node "localhost" {
|
||||
|
||||
folder "input Files" as input {
|
||||
file "xml" as xml1
|
||||
file "xml" as xml2
|
||||
}
|
||||
|
||||
node "Container" <<Docker>> {
|
||||
component "Python" as py
|
||||
artifact "mdm_to_neo4j" as mdm
|
||||
py -- mdm
|
||||
}
|
||||
|
||||
component "Neo4j" <<DBMS>> as neo4j
|
||||
|
||||
folder "Database Storage" {
|
||||
database "Neo4j-Database" as db
|
||||
}
|
||||
|
||||
input <.. mdm
|
||||
mdm --> neo4j
|
||||
neo4j -- db
|
||||
}
|
||||
|
||||
@enduml
|
||||
Reference in New Issue
Block a user