Add Neo4j support (#9)

- Add triples-write-neo4j and triples-query-neo4j to interact with neo4j
- Add docker-compose-openai-neo4j to demo Neo4j working
This commit is contained in:
cybermaggedon 2024-08-14 09:06:33 +01:00 committed by GitHub
parent 2f72fceaa2
commit d3e213f194
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 1008 additions and 230 deletions

View file

@ -1,6 +1,7 @@
local version = import "version.jsonnet";
{
cassandra: "docker.io/cassandra:4.1.5",
neo4j: "docker.io/neo4j:5.22.0-community-bullseye",
pulsar: "docker.io/apachepulsar/pulsar:3.3.0",
pulsar_manager: "docker.io/apachepulsar/pulsar-manager:v0.3.0",
etcd: "quay.io/coreos/etcd:v3.5.5",

View file

@ -0,0 +1,25 @@
local base = import "base.jsonnet";
local images = import "images.jsonnet";
{
volumes +: {
neo4j: {},
},
services +: {
neo4j: base + {
image: images.neo4j,
ports: [
"7474:7474",
"7687:7687",
],
environment: {
NEO4J_AUTH: "neo4j/password",
// NEO4J_server_bolt_listen__address: "0.0.0.0:7687",
// NEO4J_server_default__listen__address: "0.0.0.0",
// NEO4J_server_http_listen__address: "0.0.0.0:7474",
},
volumes: [
"neo4j:/data"
],
}
},
}

View file

@ -1 +0,0 @@
"0.6.0"