itzg / docker-grakn

This Docker image packages the GRAKN.AI knowledge graph database
GNU General Public License v3.0
3 stars 1 forks source link

This Docker image packages the 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 and related material by exec'ing into the grakn container:

docker-compose exec grakn bash