diff options
author | Silvio Fricke | 2018-03-30 10:06:23 +0200 |
---|---|---|
committer | Silvio Fricke | 2018-03-30 10:12:47 +0200 |
commit | 67417bc9a8a35415ead3071b477ef5008ec49fdb (patch) | |
tree | a5447df3d602c9dfbff29213a250592b840139b0 /readme.md | |
parent | 475a9850d04d39b38d365ef008cc29c779cd64cb (diff) | |
download | languagetool-67417bc9a8a35415ead3071b477ef5008ec49fdb.tar.gz |
add ngrams support
Please add a volume option to `docker run` command like `-v
/path/to/ngrams:/ngrams`.
This fixes #5.
Signed-off-by: Silvio Fricke <silvio.fricke@gmail.com>
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -20,3 +20,13 @@ The Server is running on port 8010, this port should exposed. $ docker run --rm -p 8010:8010 silviof/docker-languagetool Or you run it in background via `-d`-option. + + +## ngram support + +To support [ngrams] you need an additional volume or directory mounted to the +`/ngrams` directory. For that add a `-v` to the `docker run`-command. + + docker run ... -v /path/to/ngrams:/ngrams ... + +[ngrams]: http://wiki.languagetool.org/finding-errors-using-n-gram-data |