Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify Neo4j load, bump version #133

Merged
merged 2 commits into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions cypher/scripts/import.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ fi

docker run --rm \
--user="$(id -u):$(id -g)" \
--publish=7474:7474 \
--publish=7687:7687 \
--volume=${NEO4J_DATA_DIR}:/data \
--volume=${NEO4J_CSV_DIR}:/import \
--volume=${NEO4J_HEADER_DIR}:/headers \
Expand Down
2 changes: 1 addition & 1 deletion cypher/scripts/vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export NEO4J_CONTAINER_ROOT=`pwd`/scratch
export NEO4J_DATA_DIR=${NEO4J_CONTAINER_ROOT}/data
export NEO4J_ENV_VARS=${NEO4J_ENV_VARS:-}
export NEO4J_HEADER_DIR=`pwd`/headers
export NEO4J_VERSION=${NEO4J_VERSION:-4.4.12}
export NEO4J_VERSION=${NEO4J_VERSION:-4.4.13}

if [[ `uname -m` == "arm64" ]]; then
export NEO4J_DOCKER_PLATFORM_FLAG="--platform linux/arm64"
Expand Down