Skip to content

Commit

Permalink
Merge pull request #224 from manonthegithub/develop
Browse files Browse the repository at this point in the history
removed -a key from dockerfile CMD and quickstart docs
  • Loading branch information
niklas88 committed Apr 4, 2019
2 parents 08047fa + a89953d commit b78998d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ VOLUME ["/input", "/index"]
ENV INDEX_PREFIX index
# Need the shell to get the INDEX_PREFIX envirionment variable
ENTRYPOINT ["/bin/sh", "-c", "exec ServerMain -i \"/index/${INDEX_PREFIX}\" -p 7001 \"$@\"", "--"]
CMD ["-t", "-a"]
CMD ["-t"]

# docker build -t qlever-<name> .
# # When running with user namespaces you may need to make the index folder accessible
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Base.
docker run -it --rm \
-v "$(pwd)/scientists:/input" \
-v "$(pwd)/index:/index" --entrypoint "bash" qlever
qlever@xyz:/app$ IndexBuilderMain -a -l -i /index/scientists \
qlever@xyz:/app$ IndexBuilderMain -l -i /index/scientists \
-n /input/scientists.nt \
-w /input/scientists.wordsfile.tsv \
-d /input/scientists.docsfile.tsv
Expand Down

0 comments on commit b78998d

Please sign in to comment.