36 lines
609 B
Plaintext
36 lines
609 B
Plaintext
@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
|