2024-08-14 09:06:33 +01:00
|
|
|
local base = import "base.jsonnet";
|
|
|
|
|
local images = import "images.jsonnet";
|
2024-08-14 20:56:57 +01:00
|
|
|
local url = import "url.jsonnet";
|
2024-08-21 16:20:21 +01:00
|
|
|
local neo4j = import "stores/neo4j.jsonnet";
|
2024-08-14 20:56:57 +01:00
|
|
|
|
2024-08-21 16:20:21 +01:00
|
|
|
neo4j + {
|
2024-08-14 20:56:57 +01:00
|
|
|
|
2024-08-14 09:06:33 +01:00
|
|
|
services +: {
|
2024-08-14 20:56:57 +01:00
|
|
|
|
|
|
|
|
"query-triples": base + {
|
|
|
|
|
image: images.trustgraph,
|
|
|
|
|
command: [
|
|
|
|
|
"triples-query-neo4j",
|
|
|
|
|
"-p",
|
|
|
|
|
url.pulsar,
|
|
|
|
|
"-g",
|
|
|
|
|
"bolt://neo4j:7687",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"store-triples": base + {
|
|
|
|
|
image: images.trustgraph,
|
|
|
|
|
command: [
|
|
|
|
|
"triples-write-neo4j",
|
|
|
|
|
"-p",
|
|
|
|
|
url.pulsar,
|
|
|
|
|
"-g",
|
|
|
|
|
"bolt://neo4j:7687",
|
|
|
|
|
],
|
2024-08-14 09:06:33 +01:00
|
|
|
}
|
2024-08-14 20:56:57 +01:00
|
|
|
|
2024-08-14 09:06:33 +01:00
|
|
|
},
|
2024-08-14 20:56:57 +01:00
|
|
|
|
2024-08-14 09:06:33 +01:00
|
|
|
}
|