mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-26 17:06:22 +02:00
* - Added docker-compose-storage.yaml, just the infrastructure bits - Tidied storage invocation * Util, sits on chunker output and reports histogram of chunk sizes
20 lines
301 B
Jsonnet
20 lines
301 B
Jsonnet
local base = import "../base.jsonnet";
|
|
local images = import "../images.jsonnet";
|
|
{
|
|
volumes +: {
|
|
cassandra: {},
|
|
},
|
|
services +: {
|
|
|
|
cassandra: base + {
|
|
image: images.cassandra,
|
|
ports: [
|
|
"9042:9042"
|
|
],
|
|
volumes: [
|
|
"cassandra:/var/lib/cassandra"
|
|
],
|
|
},
|
|
|
|
},
|
|
}
|