https://github.com/itzg/docker-grakn
This Docker image packages the GRAKN.AI knowledge graph database
https://github.com/itzg/docker-grakn
Last synced: about 1 year ago
JSON representation
This Docker image packages the GRAKN.AI knowledge graph database
- Host: GitHub
- URL: https://github.com/itzg/docker-grakn
- Owner: itzg
- License: gpl-3.0
- Created: 2017-02-24T03:18:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-08T18:17:12.000Z (over 9 years ago)
- Last Synced: 2025-07-06T10:02:38.593Z (about 1 year ago)
- Language: Shell
- Size: 16.6 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
This Docker image packages the [GRAKN.AI](https://grakn.ai/) knowledge graph database
in a way that it can be deployed and scaled alongside backing Cassandra and
ZooKeeper containers.
# Quick Usage
Run
```
docker-compose up -d
```
using this `docker-compose.yml` file:
```
version: "3"
services:
zookeeper:
image: jplock/zookeeper:3.4.9
volumes:
- "zookeeper:/tmp/zookeeper"
cassandra:
image: cassandra:2.1.9
volumes:
- "cassandra:/var/lib/cassandra"
grakn:
image: itzg/grakn
ports:
- "4567:4567"
volumes:
cassandra:
zookeeper:
```
With that you can continue with the [quick start](https://grakn.ai/pages/documentation/get-started/quickstart-tutorial.html) and related material by
exec'ing into the grakn container:
```
docker-compose exec grakn bash
```