From d23a0aeadc4cc6f34e9ca89237554b59b41e898d Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Thu, 8 Dec 2022 13:15:35 +0100 Subject: [PATCH] Add local copy instructions --- docker/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker/README.md b/docker/README.md index 989e987cd..cdba507be 100644 --- a/docker/README.md +++ b/docker/README.md @@ -16,6 +16,11 @@ If you want to test with local files, put `nodes.tsv.gz` and `edges.tsv.gz` in this folder and use: ```shell +# Get graph data +cp ~/.data/mira/demo/import/nodes.tsv.gz nodes.tsv.gz +cp ~/.data/mira/demo/import/edges.tsv.gz edges.tsv.gz + +# Build docker docker build --file Dockerfile.local --tag mira_dkg:latest . ```