Skip to content

Commit 5102030

Browse files
authored
Merge pull request #1 from Intellection/package_redis_graph
Package latest version of Redis Graph into a Docker image
2 parents 6a01bfc + 4cd861e commit 5102030

File tree

5 files changed

+54
-1
lines changed

5 files changed

+54
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## 2.8.8
4+
5+
* Package Redis Graph v2.8.8.

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @Intellection/SRE

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM redislabs/redisgraph:2.8.8

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Zappi
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,26 @@
1-
# docker-redis-graph
1+
# RedisGraph
2+
3+
RedisGraph is the first queryable [Property Graph](https://github.com/opencypher/openCypher/blob/master/docs/property-graph-model.adoc) database to use [sparse matrices](https://en.wikipedia.org/wiki/Sparse_matrix) to represent the [adjacency matrix](https://en.wikipedia.org/wiki/Adjacency_matrix) in graphs and [linear algebra](http://faculty.cse.tamu.edu/davis/GraphBLAS.html) to query the graph.
4+
5+
Primary features:
6+
7+
* Adopting the [Property Graph Model](https://github.com/opencypher/openCypher/blob/master/docs/property-graph-model.adoc)
8+
* Nodes (vertices) and Relationships (edges) that may have attributes
9+
* Nodes that can be labeled
10+
* Relationships have a relationship type
11+
* Graphs represented as sparse adjacency matrices
12+
* [Cypher](http://www.opencypher.org/) as query language
13+
* Cypher queries translated into linear algebra expressions
14+
15+
To see RedisGraph in action, visit [Demos](https://github.com/RedisGraph/RedisGraph/tree/master/demo).
16+
To read the docs, visit [redisgraph.io](http://redisgraph.io).
17+
18+
See upstream project at [github.com/RedisGraph/RedisGraph](https://github.com/RedisGraph/RedisGraph) for more details.
19+
20+
## Docker
21+
22+
To run the service in Docker use:
23+
24+
```bash
25+
docker run -p 6379:6379 zappi/redis-graph:<tag>
26+
```

0 commit comments

Comments
 (0)