From 835ce1333640f24fb957553a7861457af1a675a8 Mon Sep 17 00:00:00 2001 From: Thomas McWork Date: Thu, 25 Jan 2024 18:53:00 +0100 Subject: [PATCH] fix link anchor and apply link content (#84) * fix link anchor and apply link content The anchor didn't work (anymore) and the linked paragraph hasn't been applied in the example (`:ro`) * fix incorrect link syntax --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9d08655..c82de4d 100644 --- a/README.md +++ b/README.md @@ -66,12 +66,12 @@ home/ │ │ │ ├─ 3grams/ ``` -Mount the local ngrams directory to the `/ngrams` directory in the Docker container [using the `-v` configuration](https://docs.docker.com/engine/reference/commandline/run/#mount-volume--v---read-only) and set the `languageModel` configuration to the `/ngrams` folder. +Mount the local ngrams directory to the `/ngrams` directory in the Docker container [using the `-v` configuration](https://docs.docker.com/engine/reference/commandline/container_run/#read-only) and set the `languageModel` configuration to the `/ngrams` folder. An example startup configuration: ```sh -docker run --rm -it -p 8010:8010 -e langtool_languageModel=/ngrams -v home/john/ngrams:/ngrams erikvl87/languagetool +docker run --rm -it -p 8010:8010 -e langtool_languageModel=/ngrams -v /home/john/ngrams:/ngrams:ro erikvl87/languagetool ``` ## Improving the spell checker